>We take our set of d things. We colour one of them red. We colour one of them blue. Then we pick some set of the things (k in number), including the red thing and the blue thing
In this alternate view of the process, where does the k^2 term come from? Isn't the number of ways to do it in this perspective just
(d-1 choose k-1) # We already chose the red one (which is also the blue) and need to choose k-1 more
+
(d-2 choose k-2) # We chose both red and blue ones and need to choose the other k-2
Edit: I think it actually works out, seems to be equal to
d * 1 * Binomial[d - 1, k - 1] + d * (d - 1) * Binomial[d - 2, k - 2] = Binomial[d, k]*k^2
And then you apply your argument about fixing one of the elements in each of the two cases. Actually the proof seems to be a variant (same core argument) as sum of even binomial terms = sum of odd binomial terms [1]
I think your examples illustrate each of my first two points perfectly. I don't think I've ever seen such a long and laborious proof for the binomial theorem as that in the second example. The two proofs are the same, of course (sometimes there exist several different ways to prove the same thing), the second is just way more explicit (also the first is missing equations 4.1 and 4.2, which are integrated into the second proof, making the first proof artificially shorter and artificially less comprehensible).
As to my second point, it seems pretty obvious to me that the goal of the second proof is to teach mathematical induction to people who are still struggling with basic arithmetic, not principally to prove the binomial theorem, since it includes weird things like putting "inductive hypothesis" and "inductive conclusion" in quotes, and he even writes in long hand that multiplication distributes over addition, i.e. that a(x+y) = ax + ay. Until one has internalised these basic arithmetic operations of course you're going to struggle with induction and the binomial theorem, and you're going to prefer to have examples where everything is spelled out in detail. And that's fine! But if you have internalised those details, making them explicit really does get in the way. Really. The core of the proof of the binomial theorem (which is to say, the reason why it's true) is the first proof you gave; but the second proof completely obscures that behind a haze of mechanical arithmetic manipulation and pattern-matching.
So, if you find the second proof clearer and/or more appropriate (which is fine!), all that says is that you are "in phase" with that material, it does not necessarily make one better than the other or more appropriate than the other in any other context or for anyone else. If students are having trouble with basic arithmetic manipulation, just don't force them to learn harder stuff until that's sorted out. They have to be ready for it. It is a good and happy thing that you have found material with which you are "in phase"; as I said last time, this is often very difficult. Please stop blaming your difficulties on the material when the problem is that you're using inappropriate material. Thanks! :)
I was responding to the "I assume the proof is true". There's really no reason to just assume that.
Of course he's right that the proof was lacking in insight for human mathematicians. That's particularly important in combinatorics, which more than other areas of math grows by the accumulation of techniques rather than accumulation of results.
> which BTW isn't a "proof", it only illustrates n=1..7 and hints the generalization to the reader
What you've written isn't a proof, either. All of those ellipses are terribly informal. You should really write:
(\Sigma_{k=1}^{n-1} k + n)² - (\Sigma_{k=1}^{n-1} k)²
...
Personally, I find the "proof without words" both easier to read and more convincing than some algebra. I think I'd have a harder time spotting a mistake in the algebra. Do other people really find it easier to find a mistake in a dozen lines of algebra than in a diagram?
Here <https://cacm.acm.org/magazines/2017/8/219606-the-science-of-...> is an article about a computer-generated proof of a combinatorial problem in number theory. Although you could characterise the proof as "just long", I think that the article may offer a different perspective on why proofs of this nature are interesting and useful.
> If you assume S(n) is true, n being any natural number, what good does it to to prove that S(n+1) is also true since it is included in the initial assumption imho.
Read the explanation on induction at the bottom if you haven't yet[1].
This is induction. The idea is to prove that for any 'n' for which S(n) is true, S(n+1) is true also. I'm guessing Step 4 is where the wording tripped you up?
> Step 4: We can do this by (1) assuming that, in every group of k people, everyone has the same age; then (2) deducing from it that, in every group of k+1 people, everyone has the same age.
Maybe its meaning is more clear stated this way:
Step 4: We can do this by showing that (1) for any k where it is true that "within every group of k people everyone has the same age," then (2) showing that it necessary follows that "within every group of k+1 people everyone has the same age."
Just on point 2 - you say it's a problem of matching the right material for the student.
Let's test that intuition. If you're an educator, and you needed to choose a proof to present to your students on say - the Binomial Theorem. Which of these two would you choose?
Now - I would submit that irrespective of who your students are - choose the second. It's explicit - it doesn't skip steps. No one left behind. If your students are clever enough to follow the first proof - which skips heaps of steps - then giving them the second proof isn't going to disadvantage them, because they can just skip it! It's a book! Sure - you've got more of a problem if you're in a lecture scenario - where more advanced students are going to get bored. But in the context of a textbook I really see no reason not to be explicit.
You would think. The easier, five-color theorem proof fits in a few paragraphs but the four-color theorem really resists a simple explanation. Even the simplified 1990s version of the proof (which came ~20 years after the original proof and 100 years after the 5CT proof) required enumeration of hundreds of individual cases.
I can't see how your claims relate to the article involved. The proof that's described uses a construction of infinitely many triangles and the formula for the sum of a geometric series, so it basically is a proof in it's form, whether it's correct or uses circular logic is another question but not it's merely a demonstration of properties (which is one way student proofs often fail but I don't see that here).
It is always hard to check these longish proofs. For this one it takes a bit of digging to find what the proof method is (versus what parts are the survey). The method of this write-up seems to be at the end of section 3 on page 20 where Jin Xu has cut a general graph up into smaller parts (which are claimed to be 4-colorable by induction hypothesis) and then needs to show they can be glued back together without ruining the coloring. Adding to the difficulty is the fact that the 4-color theorem is true- so you can't expect to whip up an over all counter-example. You would have to show some step fails to meet the assumptions of the next step.
>> It's part of the inductive proof process. Assuming that it holds for n you need to show that it implies that it holds for n + 1 as well.
No. That's wrong. They assert it up front (that it is true for any n horses) and then go on to use it in the proof for n+1. The only time it's OK to assert your claim up front is if you're trying to prove it false by contradiction.
For an inductive proof, you must prove that if it holds for one case (n=1 here) it also holds for the next case. The base case is important and is proven (or obviously) true. A set of n is not the base case here, and they assert something about it without proof.
It's a completely valid work to do to figure out how to write a proof, but is not a proof itself. The section in the article states all my thoughts on that matter more clearly than I can.
In this alternate view of the process, where does the k^2 term come from? Isn't the number of ways to do it in this perspective just
(d-1 choose k-1) # We already chose the red one (which is also the blue) and need to choose k-1 more
+
(d-2 choose k-2) # We chose both red and blue ones and need to choose the other k-2
Edit: I think it actually works out, seems to be equal to
d * 1 * Binomial[d - 1, k - 1] + d * (d - 1) * Binomial[d - 2, k - 2] = Binomial[d, k]*k^2
And then you apply your argument about fixing one of the elements in each of the two cases. Actually the proof seems to be a variant (same core argument) as sum of even binomial terms = sum of odd binomial terms [1]
[1] https://math.stackexchange.com/questions/313832/a-combinator...
reply