Conclusion
Hi,
sorry but I don't believe in prefaces.
Every time I read one I get kind of confused about the book. I don't find them very informative, because the good stuff is in the book, and since I have not read it yet, the author cannot really tell me much, that I would understand. A preface feels to me like a trailer for a movie: it could easily give away too much, spoil the good parts of the movie, or if it is off, weird, it can make me want NOT to see the movie.
Anyways... I personally tend to skip the preface in a new book...
So here is what I want to do for this book instead: a nice, solid conclusion, to go over what was my plan for the book. And the good thing about a conclusion is that YOU can follow it, because you have already finished the actual book!
I wrote this book with three main themes in mind:
- Syntax VS Semantics
- Linear combinations
- Boxes
Syntax VS Semantics
Everything in math can be written in multiple ways. It is such an evident and central thing that I was surprised when I started looking back and I realized that I was not told about it until my master. Strange right?!
Rewriting stuff to look like other stuff is a fundamental part of what a mathematician does (and also a computer programmer, by the way), and yet it is usually only discussed in advanced math courses (or in fairly advanced and theoretical programming courses, in connection for instance with rewriting systems or code refactoring).
In this book I kept coming back to the idea that expressing the same thing in multiple ways is beneficial, and often reveals how to solve problems.
It was an eureka moment when I realized that even a basic thing as a whole number has a notation and can be written in right and wrong ways.
For example a number like 27 is really a linear combination of 10 and
1, so it can be written as 2*10+7*1, or as 27 using boxes. These are the right ways to write 27, but as soon as I am aware that 27 is BUILT by 2 and 7 and powers of ten, I can start looking at alternative ways to write it, like: 1*10+17*1, which is
117.
This is a transformation that alters the looks but not the meaning of my number.
Interestingly, these kinds of transformations are more visible with imperial units than with our usual base 10...
When you work with yards and feet you are always at risk of writing the wrong amount of some unit, and have to correct your numbers, AKA transform your representation back to normal form.
We found normal forms and meaning-preserving transformations everywhere in this book.
For example a fraction is in normal form when the two numbers (above and below the fraction line) are whole, positive and co-primes; so a fraction like 24 is not in normal form, because both numbers can be divide by 2 and still be whole. The normal form for that fraction is 12. It is also possible to zoom the fraction, making the two numbers larger, without altering the meaning of the fraction:
1020 is the same fraction, only zoomed by 10.
Zooming and simplifying are opposite operations, and are both useful when preparing or
cleaning up a fraction in between operations. But I found surprising that zooming is not usually discussed in school math textbooks, even if it helps a lot when explaining things like addition of two fractions with different denominator.
We even found that a linear equation has a normal form too, and that its normal form is the solution to the equation! So x=5 is an equation in normal form, but the normal form here is so clear and simple, that you can read the solution out of it, directly without calculations. And that is cool. Solving an equation becomes a matter of using (meaning-preserving) transformations to rewrite the syntax of the equation step-by-step, until it becomes its own solution (AKA it is in normal form).
I think that this idea of incrementally moving something towards its normal form, is very powerful and appealing. And it is not my invention: it is in fact precisely the way linear algebra textbooks explain
the process of row reduction to bring a system of linear equations to the so called reduced row echelon form... Of course linear algebra is a much more complex subject than school math, but why not taking advantage of the highly visual ways of explaining certain solving techniques?!
Finally, in chapter 7 we found that looking at geometrical structures from different points of views is very beneficial, and it helped us in defining formulas to count parts or measure properties of those structures. The same square of dots was cut in different ways, and almost any time we got insights from the resulting subdivisions.
Linear combinations
I believe that a weighted sum is one the most important and common concept in math, but too often this fact is not acknowledged, especially in elementary math courses. Perhaps it is more evident in stuff like linear algebra, where a weighted sum is usually called a linear combination...
I find that a weighted sum is also a very direct thing to "see": on a balance scale, when reasoning about money (with all the different coins to combine to reach a certain amount), even in the way the numbers are built in the decimal system (on an abacus for instance).
Polynomials, one of the central pillars of school math, are a linear combination of powers of x and some weights.
In this book we encountered linear combinations...
- when looking for a more compact notation for unary numbers. The result was the introduction of base 10 whole numbers, and a way to represent numbers on the abacus. Base 10 numbers are shorter and easier to write, but we lost the nice and obvious definition of addition that we had with unary numbers; we were forced to redefine addition to make sense on the abacus.
The number III on the abacus becomes something like:100 10 1 | | | | | | | | | | | | | | | | | | | | | | | [-] | | [-] | | [-]
and in base 10 it becomes a linear combination of powers of ten: 0*10^2 + 0*10^1 + 3*10^0 - Math expressions are linear combinations of variables (or products of variables) and constant numbers. Operations like addition and product can be extended to work for entire expressions.
For example consider:
(2*a+b)*(5*c) + 3*b
where the expression (2*a+b) is multiplied by another expression (5*c), and the result will be added to 3*b, yet another expression. The result will be a new polynomial (AKA a new linear combination of variables and constants).
(2*a+b)*(5*c) + 3*b →
(2*a*5*c + b*5*c) + 3*b →
10*a*c + 5*b*c + 3*b Surprisingly the properties of addition and multiplication are the same for expressions than they were for ordinary numbers. - Finally, it turns out that equations are comparisons of polynomials (AKA comparisons of linear combinations of variables weighted by constants). For example: 2*x+5 = 3*x-2 can be solved in many ways, but a possible way is to look for a value of x that will make the two linear combinations 2*x+5 and 3*x-2 become equal. To find the right value for x we have sometimes made a table, using some clever technique to avoid writing too many numbers in the table, and in some other cases we plotted a diagram with two lines and looked for intersections... and it turns out that in math straight lines too can be described by weighted sums.
Boxes
In many places in the book we got stuck because the numbers (or math entities) we wanted to work with where too complex to SEE. Often the solution was to expand our notations, make things more explicit and more visible by adding a bit of structure. For example to keep apples and bananas separated, but together, we came out with the rather simple solution of having two boxes, one for each kind of fruit.
At some point we needed to keep track of sheep, owned and owed, and for that we were forced to extend the whole numbers to include negative numbers. One of the solutions for that was also to have two boxes, a black and a red one, and redefine the addition to work with positive and negative numbers.
I find that many of the properties of math things and operations become more clear using a concrete, mechanical representation. Take geometry on paper: the ruler and the compass have their own limitations and ways of working, that helped Euclid working out geometrical theorems.
In the book I tried to use boxes as a mechanical representation of information about numbers and other math things...
In computer science box-like things are called tuples, a generalization of "couples, triplets, quadruplets, ...", and they are very useful to define what data is in a program and how it should be changed by various operations.
(One of the most diffused programming paradigm, Object Oriented Programming, is largely based on custom definitions of tuples and their operations)
We encountered boxes more or less in a chapters, in many different contexts. For instance:
- The abacus is basically just a bunch of boxes, each box named after a power of ten, so that
a number like 27 is really
27, and in the abacus it becomes
100 10 1 | | | | | | | | | | | (-) | | (-) | | [-] | | [-] | | [-] | [-] [-] | [-] [-]
- In other case we needed to give a name to our boxes. For example if you have 3 apples and 5 bananas and want to keep them separated (and not just count them all up as 8 fruits), you can use two boxes with labels: a3b2 → 3*a + 2*b and the boxes turned out to be equivalent to math expressions. Addition of expressions has a nice and natural rule when using labeled boxes, for example: a3b2 + a2b1 → a3+2b2+1
- We can also decide to use a pair of boxes to represent fractions (seen as un-calculated divisions): 227 → (22:7) → 227 And also in this case operations defined with boxes are nice and positional... For instance addition looks like this: 15 + 25 → 1+25 and it stands for: 15 + 25 → 1+25
- Two-pans balances can also be represented by boxes, one per pan. For example the equation: 2*x+5 = 3*x-2 can be represented as boxes within boxes: |x2 5|x3 -2| with two boxes, each containing one part of the equation. Each part of the equation is in turn expressed as labeled boxes (AKA linear combinations of x and numbers).
Thanks for reading this far,
Andrea.