Jump to content

Decimals v. Fractions


Tex

Decimals or Fractions?  

1 member has voted

  1. 1. Decimals or Fractions?



Recommended Posts

Hey there, fellow Kerbonauts.

I was wandering around the forums, bored, and I was thinking about different sizes of rockets. Thinking about 2.5m rockets eventually got me thinking about decimals. I always prefer to not only do my calculations using them instead of fractions, but also I try to convert fractions to decimals whenever I can.

Personally, I prefer working in decimals for simplicity and ease of operation, but what' y'all's take on it?

Link to comment
Share on other sites

Depends on what I'm doing. If I'm dragged away from my precious calculator and I actually have to do stuff by head I vastly prefer fractions.

63/23 * 54/13 = (63*54)/(23*13) = 3402/299 is a lot easier than trying to figure out that 2.73913043478 * 4.15384615385 = 11.3779264214

However, I'm a physicist IRL and I find the decimal notation much more intuitive. If my calculations say the flowrate is 1.3058 cm^3/s I can see much faster if that's within my expectations (And thus whether I'm botching the calcs) than when I end up with 47261/36193 cm^3/s.

So in the modern world where computers do the grunt work I prefer decimal but if I find myself in the middle of nowhere without batteries or power I'll resort to fractions.

Link to comment
Share on other sites

Fractions are also more accurate, they don't have the same amount of floating point rounding errors as decimals do, I think. But both has their uses, decimals are easier to read but fractions are easier generally better to do math with. And also stuff like 1/3 vs 0.3333333... etc.

Link to comment
Share on other sites

its easier to implement functions in code with decimals, since fractions are easy to convert to decimal with reasonable precision. if you are working on low level embedded platforms like where you need to use ints or dont have a floating point unit to work with and need to implement fixed point maths. you just pick a bit to be the ones place and the bit to the right of it is the 1/2 place, followed by the 1/4 place and so on. add and subtract work as normal, multiplies and divides require shifts. some other cases where you need to use fractions is if you have a hardware multiply but no divide (points at atmel). since division by a number is equivalent to multiplication by its reciprocal, you usually use reciprocal constants just to make things faster. so at least in programming you kinda need to be familiar with both ways to get anywhere.

Link to comment
Share on other sites

I always find it far simpler and more useful to do all the calculations in fractions and only convert it to decimals once I've found the answer. If I'm trying to solve something like mε = p²/2m + J²/2mr² - GMm/r I always prefer to see what cancels or simplifies and thereby saves me the effort of writing it out, and I never actually introduce any numbers until I've got a symbolic expression for the solution.

Sometimes it can be slightly easier to use decimals. When coding I might type a*b*0.45*c*d rather than a*b*(1/5 + 1/4)*c*d just because it saves me a few characters, but I'd never do anything like that on paper.

Link to comment
Share on other sites

"Fractions are beautiful."-A genuine quote from my GCSE Maths teacher. :D

To answer the question, both have their ups and downs. When I'm doing Maths, I tend to use fractions, Ralathon above explained how much more intuitive fractions are in multiplication. In the more concrete worlds of Physics and Chemistry, I usually opt for decimal. However, to second my Maths teacher, when I have a choice of giving an answer in decimal or fractions, I go for the more elegant fractions.

-An AS-level student. (Physics, Chemistry, Biology and Maths.)

Link to comment
Share on other sites

I'd have to say fractions, beacuse you can have decimals IN fractions :0.0: Like this --> 2.5

---

10 (Which obviously equals 1 over four, it was just for demonstration purposes.)

There are many other reasons, too. It's alot easier to write proportions with fractions instead of decimals, and even more things. The only advantage I see that decimals have is that it's easy to convert to a percent.

Link to comment
Share on other sites

In my engineering school, and I guess in pretty much any serious scientific context, we had to do our math in symbolic form and at the end put values and get a result, usually as a decimal.

Decimals are easy to read but introduce an error, fractions are exact but can be abstruse.

For engineering purposes, decimals are usually good enough to represent values, but you should try to avoid them in calculations as much as you can.

Link to comment
Share on other sites

Depends on what I'm doing with them. Fractions are pretty common for me as intermediate steps or if variables are involved. On the other hand, if it boils down to a number with a fixed meaning, tables are much easier to sort and compare results using decimal notation.

Link to comment
Share on other sites

For engineering purposes, decimals are usually good enough to represent values, but you should try to avoid them in calculations as much as you can.

I'm an engineer. I'd say decimals are fine in calculations as long as you take care to use full precision at every step, and only round your result. Rounding too early is a major source of errors.

Link to comment
Share on other sites

I work on the other end, metal fabrication and production. The shop I am in does not do terribly precise work, understand that precision is expensive in production and is avoided if possible. Now even this not very precise work has total tolerances as low as 0.0016 inches, we may have tighter but that is the most I have seen. Once we get into actually cutting the part we measure in decimal, but before that all stock, parts, bolts, screws, machines, chucks, collets , taps, drills, and dies are in fractions.

Link to comment
Share on other sites

Fractions are a bit more common in Imperial work though, because an inch is an inconveniently large unit for most things so has always been chopped up into fractional units. If you were using metric you'd be doing it all in decimal.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...