Chapter 4 - Fractions or "lazy divisions"

We have found out clever ways to calculate divisions in the previous chapter, but division are still complex and long...
Perhaps we could do like the ancient Greeks and keep divisions un-calculated ... or at least keep them NOT SOLVED as long as possible in our calculations. Wouldn't it be nice to postpone division, and have to do one division at the end of each math expression? This is known as a lazy evaluation strategy, and it can summed up by the classic school math sentence "I will not calculate this division!... not right now anyways".
First we need to find ways to avoid calculating divisions as long as possible in a math expression. For example we could say that when calculating something like 10+(10:2)-1, we could leave (10:2) be, and instead of replacing it with its result (which is 5 by the way), do the rest of the calculation first: 10+(10:2)-1 → (10:2)+10-1 → (10:2)+9 Then when you really cannot avoid it, do the division, and finish the calculation: (10:2)+9 → (5)+9 → 5+9 → 14 And if we think about this idea a bit more, we should be able to do even better than in this simple example.
OK, but then we will have un-calculated division instead of numbers in our expression, and we will have to decide how to do additions, multiplications, etc, between regular numbers and these un-calculated division things. And we might get to a point where an un-calculated division starts to feel like just another KIND of number; so we could end up seeing (10:2) as ANOTHER WAY to write 5. When that happens, we can give a special syntax to an un-calculated division, ... and a better name: a fraction!

Procrastinate... in a while

Let's say that I want to AVOID calculating divisions as long as possible in a mathematical expression, for example in: (10:2) + (20:2) The usual way to go is to first calculate the two divisions (in the two brackets), then add; so:

(10:2) + (20:2)
⇓ : ⇓ :
5 + 10
⇓ +
15
But to delay calculating the division as much as possible, I could try to do the addition first, then the division... if I really have to. It would look like this:
(10:2) + (20:2)
⇓ +
???

The problem is that I don't know how to proceed here...How can I ADD two divisions, before I even calculate them?
Well, I could look at what each division means: 10:2 means "take ten sheep and divide them equally between two of my friends", and 20:2 means "take twenty sheep and divide them equally between the same two of my friends". The two friends will get the sum of all those sheep, divided between them.
However you calculate this, you end with each friend getting half of thirty sheep, right?! But that means that: (10:2) + (20:2) is also (10+20):2 and that is 30:2. Good, but this works only the case because I am dividing my sheep among the SAME TWO friends. It would not work for something like (10:2) + (20:3). But back to our alternative way to calculate the expression. Now I know what to do:
(10:2) + (20:2)
⇓ +
(10+20):2 = 30:2
⇓ :
15

Nice! It does not matter in which order I do the calculations, I still get the same result: 15. The advantage in the second method is that I have to do only one division, which is potentially a good, lazy way to go... and perhaps I could even avoid that one! Would it be wrong to say: (10:2) + (20:2) = 30:2 and stop there, without giving the final result as 15? Can 30:2 be considered kind of like a number by itself? Not really, mainly because it is clear that thirty is divisible by two, so I can do better than stop here, and I should really finish my calculation.
Fine, sure. But there might be other cases where I could prefer to stop at the division. For example if the result of calculating an expression is 1:2, then it might be better to leave it as un-calculated division than incommodate 0.5, which is a broken number (see the previous chapter) and not so nice to look at anyways...
OK, say that we decide to go this way. We need to find out what happens when we add an un-calculated division like 1:2 to a whole number, or when we multiply it by some other number, or even by another un-calculated division: because so far the only thing we know is that (a:b) + (c:b) is equal to (a+c):b.

The un-calculated divisions

The first puzzle is (1:2) + 3. Unfortunately I don't have a rule for this one, and so far I only know how to add a number to another number, and an un-calculated divisions to another, but only when they are similar enough (which means that both divide by the same number, like 10:2 and 20:2). What can I do here?
If only I could rewrite that lonely 3 as something divide by two, then I would get: (1:2) + 3 → (1:2) + (something:2) and I could easily calculate the addition of the two divisions...
So we need to find a way to rewrite 3 as something:2. We can go back to our idea that in math the same meaning can be expressed in many ways (semantics versus syntax), and 3 is actually also 6:2, or 9:3, or any division like: (3*n):n where n can be any number you like, just not zero.

Even more in general, we can say that ANY whole number m is also equal to (AKA has the same meaning as) any un-calculated division that looks like (m*n):n (provided that n is not zero, which would create problems with the division).

OK, good, so the trick here is rewrite 3 as a fake division by two: (1:2) + 3
(1:2) + ((3*2):2) =
(1:2) + (6:2)

and now I can use my rule for adding un-calculated divisions: (1:2) + (6:2) =
(1+6):2 =
7:2
which eventually would be 3.5.
But is this the correct result? Let's see with a calculation diagrams:
(1:2) + 3
⇓ :
0.5 + 3
⇓ +
3.5
(1:2) + 3
⇓ +
1:2+((3*2):2) = (1+6):2 = 7:2
⇓ :
3.5
good! So what is the rule in general? It must be: (a:b) + n
(a:b) + ((n*b):b) →
(a + n*b):b
with a, b, and n being any three whole numbers, with b different from zero.

The second expression (1:2) * 3 is a bit easier, because if we read the multiplication as repetition (like we did in chapter 2), we get: "3 times something is just something added to something added to something", which translates to the mathematical expression: (1:2) * 3 = (1:2) + (1:2) + (1:2) And we have already a way to do additions between un-calculated divisions, two by two: (1:2) + (1:2) = (1+1):2 But here we have three to add, so we get: (1:2) + (1:2) + (1:2) = (1+1):2 + (1:2) = (1+1+1):2 and in a more general case, with n being any whole number: (1:2) * n = (1:2) + ... + (1:2) = (1+...+1):2 = (1*n):2
OK, so I think we have a rule here, and it says: (a:b) * n = (a*n):b which looks right, considering our examples so far.

Interestingly, this last rule shows inverse relation between multiplication and division. Let's take for example 2, and a division like 1:2; if I multiply them I get 1, because: (1:2) * 2 → (1*2):2 → 1 and this is true not just for 2 and 1:2, but for ANY whole number (excluding zero, which works very badly with divisions!). So I can write a general property of multiplication (and division) that says: (1:n) * n = 1 for any number n (just not zero). In our example here, n is 2 and 1:n is 0.5, so in mathematical jargon I could say that the number 0.5 is the inverse of the number 2, because 0.5 * 2 = 1!

So far so good. Now, the third expression is: (1:2) * (3:4). Well... I find this one very difficult to see. How can I read it so it even makes sense? And how could I rewrite it in the hope of finding its result?
I might try with one of my nice calculation diagrams: on the left I do first the divisions and then the addition, and on the right I try to do the opposite...

(1:2) * (3:4)
⇓ : ⇓ :
0.5 * 0.75
⇓ *
0.375
(1:2) * (3:4)
⇓ *
?

Well, I know from a bit before, than (a:b)*c = (a*c):b , so I can surely use that here: ( 1 : 2 ) * (3:4) = ( 1 * (3:4) ) :  2 
Good, now the first part simplifies like this: 1 * (3:4) ) = (3:4) because 1*something is just the something, anywhere in math. And also because (a:b) * n = (a*n):b, and (a:b) * n is the same as n * (a:b), which is what we have here.
So I'm left with: (3:4):2 ... and I'm stuck again. What is the meaning of (3:4):2?
I'm dividing 3 by 4 and the result again by 2, right?! But what does it the mean, what situation is this division of division describing?
OK, let's say I take a flock of sheep and divide them between 4 friends. Then each friend takes whatever she's got and divides that among 2 relatives. How many sheep will each one of the relatives get?
Or if your prefer the "classic" cake example: take one cake, cut it in four pieces. Then cut each piece in two slices... how small is each of the resulting slices?

When you think about this kind of problems for a while your will (... possibly get a headache, then...) realize that surely the order in which you divide is NOT IMPORTANT, what counts is the overall effect. So dividing by 4 and then by 3 has to be the same as dividing by 2 first and by 4 later! After all, if I divide a cake in four and each fourth in halves, I will get 2*4 = 8 slices, and each will be one eighth of the whole cake.
And if that is true in general, not just with these particular numbers, then I can finish my calculation. Because (3:4):2 = (3:2):4 and they are both equal to 3:(4*2), which gives 3:8. And in fact all three expressions have the same result: 0.375.
So putting it all together: (1:2) * (3:4) →
( 1*(3:4) ) : 2 →
(3:4) : 2 →
3:( 4*2 ) = 3:8 = 0.375
Hence, our diagram becomes:

(1:2) * (3:4)
⇓ : ⇓ :
0.5 * 0.75
⇓ *
0.375
(1:2) * (3:4)
⇓ *
(1*3) : (2*4) = 3:8
⇓ :
0.375
and since the diagrams gives the same result no matter which order I follow to calculate, it should mean that the two ways are EQUIVALENT. And with that in mind, I can try to write a general rule for these kinds of expressions: (a:b) * (c:d) = (a*c) : (b*d) which by the way looks kind of cool. Just SWAP the variables and SWAP the operations... cool!

But can I trust that it is true for any numbers a, b, c and d (eventually remembering that b and d cannot be zero)?
Well, at the very least we should check that it works when b and d are equal to 1, because in that case we are not really dealing with divisions anymore, but with numbers, so we should know what to expect. Let's see: (a:1) * (c:1) = (a*c) : (1*1) in other words we get a*c = a*c which is surely correct! Good, so our rule at least does not make mistakes when numbers are involved (instead of actual divisions). Nice.
But to build some confidence that the rule is true in general, let's play with the playground below, change the values of a, b, c and d, and see if the two ways to write the same thing always agree, which means that hopefully (a:b) * (c:d) will always give the same result as (a*c) : (b*d). See if you can find a counter-example!

Use this playground to test the hypothesis that (a:b) * (c:d) = (a*c) : (b*d) is always true.
Try for example with: (10:2) * (16:4) , which is 5*4 and should give 20 no matter how you calculate it.
You can also stress-test the playground, using the "random" button, to try different, randomly created values for a, b, c and d.
At what point to you start believing that the rule is always true?

Too long, didn't read...

OK, that was a bit too long... What about a more direct, more visual way to understand what (a:b) * (c:d) means and how to calculate it?
In math, when you get lost, it's often a good idea to try looking at geometry, you know, draw stuff... (yet another take on the idea of multiple ways to express the same thing).
First we make up a way to draw a division, as a process of cutting slices from a rectangle, then we reason on the geometry of this representation of divisions. Finally, we can try to see what happens when we multiply two of these slices together... For example, let's consider again: (1:2) * (3:4). In particular I could take 1:2 and draw it as half of a square (see below). Any size square would do really, but here I choose a square with side 4 because it is small, yet large enough for dividing it up a few times. You can also do this with a continuous square, a play-dough square for example, instead of one made of dots (like I have); that would make it even simpler to imagine cutting slices out of it, because you will never get in a situation where you have to cut a dot in half. Anyways, I can now move to the 3:4 division: in this situation "3 divided 4" means that I need to cut a slice that is three parts out of four, in a similar square.

and     →     * =
Since the square is four by four, we are really looking at 16 * (1:2) and 16 * (3:4), and to the right (in the figure above) the square that represents 16 * (1:2) * (3:4). Now, the first slice has an area of (16*1):2 = 8 dots, and the second is (16*3):4 = 48:4 = 12 dots. And I can see VISUALLY that it is so (in the squares above). What is the area of red rectangle on the far right (above)? I can SEE that it is 6, but then 16 * (1:2) * (3:4) must be 6; let's see if that is true: 16 * (1:2) * (3:4) →
(16*1):2 * (3:4) = 8 * (3:4)
(8*3):4 = 24:4 = 6

... and it is true. Great.
As we usually do, let's change the perspective, and look at the SAME squares but calculating the operations in a different order. If we get the same result, it means that probably the operations can be applied in any order!
So now I want to try to first calculate 16 * (3:4), and then multiply by 1:2, AKA divide by two... Starting from the same four by four square, I get:
* =
and the area of the red rectangle is 16 * (3:4) * (1:2) this time; the calculation here is first (16*3):4 = 48:4 = 12, and then 12:2 = 6 dots. Visually I can see that the red rectangle to the right in the figure above, really has an area of six dots.
And six is exactly the result I would have gotten, if I used our rule from the previous section: (a:b) * (c:d) = (a*c) : (b*d) →
(1:2) * (3:4) = (1*3) : (2*4) = 3:8 →
16 * (3:8) = (16*3) : 8 = 48:8 = 6
... bingo!

Enter the fraction

I know now that I can be lazy when calculating divisions, and instead I can use various rules to work with un-calculated divisions in my expressions as if they where numbers; I might then just have to do a single division at the end of the calculation, or not even that, if you let me call "result" a division like 7:2.
Since an un-calculated division like 7:2 is just two numbers grouped together, I can decide to write it down as: 72 and remember that what it means is "the first number divided by the second". This box notation can be useful to follow the way the rules for adding and multiplying divisions work.
Using two boxes to represent one un-calculated division is fine, but I would like to treat something like a:b as a SINGLE THING, as an actual number. So why not giving this things a special syntax... and a better name? How about calling an un-calculated division a fraction?!
If you accept that, then a:b can be written as ab, the way we all did in school.
OK,fine. Now: to work as if a fraction was a number, I have to define how to add, multiply (and perhaps also subtract and divide) fractions with other fractions. Luckily we just did that in this chapter, only that we did it writing fractions as un-calculated divisions.
If I rewrite the rules we found with the syntax of fractions (and boxes), I am sure they will be more familiar, and perhaps even bring back school math memories:

Fine, but I also have to ask the usual question: is there a normal form for a fraction and what are the possible transformations that would change how it looks but not what it means?
Let's start with our friend un-calculated division 1:2 and write it as a fraction: 12. What is means is: "a division between two numbers, where the dividing number (at the bottom of the fraction) is two times as large as the number being divided (the one on the top of the fraction)". We know that if calculated, the division 1:2 is the number 0.5. And putting these two things together one could ask: are there other ways to write the same fraction? Answer: you bet!
For example 1020 is also 10:20 = 0.5 and that means it is ALSO a way to write 12. Let's see a few other examples: 12 , 24 , 36 , 1020 , 0.10.2 , 0.51 , -1-2 , -2-4 , ... OK, so ALL of these fractions ARE 12, because any fraction with some number on top and double as much at the bottom is 12. And by "ten twentieth IS one half" here we mean: if you were to do the division, you will get the SAME result; we are talking about same meaning (semantics), even if the look (syntax) can be very different.
Sure. But can I choose one way to write 12 as "the official representative of the one half-ness"? That would be the normal form for that fraction.
In math a normal form should be a simple, possibly elegant way to write something, not too weird and that kind of conveys the meaning as clearly as possible. Here, 12 seems the simplest way to write this fraction: it has after all the smallest two numbers of all the other candidates.
Well, that is not entirely true: 0.10.2 has smaller numbers, but... they are UGLIER! Mainly because of the broken numbers. So perhaps the principle here could be: the normal form of a fraction should be a fraction with the same meaning (AKA the "same" fraction), but with the two smallest possible WHOLE numbers. That gives me "simple and elegant" (or at least "not too ugly").

Note: surely I also need a fraction to never have the bottom number equal to zero, because a fraction is just a lazy division, and we know from the previous chapter that dividing by zero does not make sense. But I don't need to specify that in the definition of the normal form, because a fraction like something0 is not a fraction to start with, so it cannot be in normal form for sure.

OK, let's say that my definition of what a normal form is, makes sense. How do I check that a fraction is in normal form? And what can I do to bring a fraction to its normal form, in case it is not?
Well, I can go back and try to find similarities among all the ways to write 12. In fact they all look like: k * 1k * 2 for some number k. Let me try with some small values of k, to see what happens.
When k=1 → 12, when k=3 → 36, and when k=0.1 → 0.10.2, and finally when k=-1 → -1-2.
Fine, this is an interesting property of fractions: "a fraction stays the same if I multiply the top and bottom numbers by the same value" (provided that value is NOT zero). And this property makes sense also looking at a fraction as a division, so no surprises there: in fact 1:2 = (1*5):(2*5) = 5:10 = 0.5.

Moral of the story so far: "12" is really the name of any fraction in the infinite family of fractions that are THE SAME as 1:2. I can write the same fraction ab in infinitely many other ways, but they will all look like k * ak * b, for some number k different from zero.

Special fractions and the ZOOM transformation

I think we should consider some fractions as special, for example: 51 is a fraction but looks suspiciously like a normal whole number. And in fact if I look at it as a lazy division, it must be the same as 5:1 = 5, so a fraction with one at the bottom is a whole number!
Good, and what about 82? Surely that is four! But it is also a fraction... not in normal form though. If I wanted to simplify this fraction, I could try to see it as something of the form: k * ak * b. Or if you like, I can try to divide both top and bottom numbers by the same (whole) number and see if I get simpler (but still whole) values for both: 82 → I try with 2 and get 41 and I could not go any further because four and one have no factors in common. A different way to see this process of simplification is to rewrite top and bottom number as prime factors: 822*2*222*21 and then remove common factors from the top and the bottom at the same time. Interestingly, that means that the simplification of a fraction stops when the two numbers (top and bottom) no longer have any common prime factors. In math they say that the two numbers are co-primes, or that they are prime with respect to each other.
So some fractions are really whole numbers, and other fractions can look like fractions but are really simpler fractions or even whole numbers. Proper, improper and apparent fractions Interestingly, at this point we have also worked with a transformation of fractions that changes the look but leaves the meaning unchanged: abk * ak * b where k is any whole number, different from zero. I propose to call this transformation "zoom", so I can say "1020 is the fraction 12 zoomed by 10". The zoom transformation is a great example of meaning-preserving transformation, and in a sense we have used it without knowing in our rules. Take the rule: ab + c = a + (c*b)b we could approach it from this angle: take c and promote it to a fraction (with the 1 at the bottom of course), then zoom it by b and add the two fractions! These steps look like: ab + c  -promoteab + c1
ab + c1  -zoomab + c*b1*b = ab + c*bb
ab + c*bb  -adda + (c*b)b

And finally, a fraction has an inverse. For example: 23 is the inverse of 32, because when I multiply the first by the second I get 1.

Check that it is the case. Use the multiplication rule to calculate 23 * 32.
Whole numbers also have inverses, and those can be written as fractions; for instance: the inverse of 4 is 0.25, because 4 * 0.25 = 1, but 0.25 is also 14, and saying "the inverse of 4 is 14" is much more elegant and clear than using 0.25!
Note: zero is the only number that has no inverse (like we found out in the previous chapter).

Time to play with fractions a bit. The playground below lets you manipulate fractions, create them, add, multiply and invert them (the "1/n" operator). There is also a "simplify" operator that will reduce a fraction to its normal form.
You can move the fractions using drag and drop. If you long-press the mouse button (or your finger) on a fraction, it will show itself in a different format: the standard format is ab, and the alternative format shows the fraction as slices of an area (ab would be b empty rectangles, with a rectangles filled with some color).
The "new" operator creates random fractions for you, and sometimes you will get whole numbers (which we have established are just fractions with one as bottom number).
The "zoom" operator does somehow the opposite of what "simplify" does: it transforms a fraction by a random number k, so that the input fraction ab will come out "zoomed by k", AKA looking like a*kb*k.

Collect new fractions until you get a whole number and a fraction, then add them up.
Is the result in normal form? Try to simplify it and see if it was.
Collect new fractions until you get a whole number. Clone your number, so you can have two copies of it.
Now, invert one of the copies of your number, to get a fraction like 1your number, then multiply your original whole number by its inverse (the fraction). What did you get as result? Do you get 1? Is that correct? Why?
Get a new fraction and pass it a couple of times in the zoom operator. What is happening to your fraction?
Now pass the fraction in the simplify operator. Is the resulting fraction still the SAME? (which means: is the value of the fraction unchanged by the simplify operator?)
Use long-mouse-press to change the format of your fraction, so you can see its area representation. Try to pass your fraction in the zoom operator and then in the simplify operator, a few times. How does the area representation change after zooming and simplifying your fraction?

Puzzles

(1) Simplify divisions.

Simplify the following division, without calculating them. An un-calculated division is in normal form when the two numbers have no common divider (AKA when they are cop-rimes).

When you are done with your simplifications, test if you did right: use a calculator to find the result of all division above, and then of your simplified versions too. Did you get the same results for each calculation?

(2) Work with un-calculated divisions.

Calculate the following math expressions, first by doing the divisions fist, and then calculate them a second time, avoiding as much as possible to do any division. When possibly, simplify the un-calculated division.

Use a calculator if needed.
Did you get the same results for each calculation?

(3) A fraction divided another fraction.

We have not defined how to divide fraction by another fraction in this chapter. But we have found a rule to multiply a fraction by another: ab * cd = a*cb*d assuming that b and d are any number, but not zero. However, we also have established that every number and every fraction has an inverse (excluding zero), and we also know from the previous chapter that multiplication and division are one the inverse of the other. So putting all this together we can derive a rule for dividing a fraction by another fraction: ab : cd = ab * dc and here we have to assume that b, d, and also c are all not zero, otherwise we cannot invert the second fraction.
So instead of calculating a division between two fractions, I can simply flip the second one and calculate a nice multiplication instead.
Taking all that in consideration, solve the following problems. Note that the problems require to calculate some math expressions involving fractions. Remember: try to use the rules we have defined in this chapter, to solve the problems below, and not just a calculator...

and if needed, simplify your solutions (AKA bring your results to normal form).


TOP