Solving 100 Bushels Using Matrix Factorization
John Mount discusses a solution to the "100 Bushels of Corn" puzzle using matrix factorization, highlighting its educational value in teaching Diophantine equations and linear algebra concepts.
Read original articleThe article discusses a solution to the "100 Bushels of Corn" puzzle, which involves distributing 100 bushels among 100 people, with men receiving 3 bushels, women 2 bushels, and children 0.5 bushels each. The author, John Mount, highlights the puzzle as a practical example for demonstrating tools used in solving Diophantine equations. He presents a matrix factorization approach to arrive at the solution, emphasizing its educational value in understanding linear algebra concepts. The article serves as an announcement for a more detailed write-up that will be available for further reading.
- The "100 Bushels of Corn" puzzle involves distributing bushels among men, women, and children.
- John Mount provides a matrix factorization solution to the puzzle.
- The puzzle serves as a practical example for teaching Diophantine equations.
- The article aims to keep the solution editable while ensuring reliable LaTeX rendering.
Related
Mrs Perkins's Quilt (2017)
The Mrs. Perkins's Quilt puzzle involves dividing a 13x13 square quilt into 11 specific squares. Originating in the early 1900s, researchers like Richard Guy and Ed Pegg Jr continue to advance this mathematical challenge.
12 Coins in Verse: Genius solution of twelve balls and a scale problem
Ian Stewart discussed Cedric A. B. Smith's poetic solution to the 12 coins problem, which involves identifying an odd-weight coin in three weighings, emphasizing creativity in mathematical problem-solving.
A new rare high-rank elliptic curve, and an orchard of Diophantine equations
Recent developments in mathematics include Bogdan Grechuk's book on systematically solving Diophantine equations and the identification of a high-rank elliptic curve with 29 rational solutions, raising significant open problems.
How to Compose Math Problems
The article highlights how composing math problems fosters creativity and critical thinking, emphasizing characteristics of "beautiful" problems and the importance of pattern recognition in problem formulation and discovery.
The box problem that baffled the boffins
The box problem by Alex Bellos shows Andrew is more likely to find a prize first than Barbara due to the order of searching, intriguing mathematicians with its surprising probability outcomes.
Here's a very simple alternative:
for m in range(0,100):
for w in range(0,100):
for c in range (0,100):
if m + w + c == 100 and 3*m+2*w+.5\*c==100:
print(m,w,c)
Edit: related follow up: any chance this technique is a good fit for enumeration of [Magic Squares][0] of a given order?
Pretty smart parrot.
The word problem directly translates to this system of diophantine equations:
(i) { x + y + z = 100
(ii) { 6x + 4y + z = 200
Replacing z in (ii) using (i) yields: (ii) <=> 6x + 4y - x - y + 100 = 200 <=> 5x + 3y = 100
Which is solvable with the usual method.Related
Mrs Perkins's Quilt (2017)
The Mrs. Perkins's Quilt puzzle involves dividing a 13x13 square quilt into 11 specific squares. Originating in the early 1900s, researchers like Richard Guy and Ed Pegg Jr continue to advance this mathematical challenge.
12 Coins in Verse: Genius solution of twelve balls and a scale problem
Ian Stewart discussed Cedric A. B. Smith's poetic solution to the 12 coins problem, which involves identifying an odd-weight coin in three weighings, emphasizing creativity in mathematical problem-solving.
A new rare high-rank elliptic curve, and an orchard of Diophantine equations
Recent developments in mathematics include Bogdan Grechuk's book on systematically solving Diophantine equations and the identification of a high-rank elliptic curve with 29 rational solutions, raising significant open problems.
How to Compose Math Problems
The article highlights how composing math problems fosters creativity and critical thinking, emphasizing characteristics of "beautiful" problems and the importance of pattern recognition in problem formulation and discovery.
The box problem that baffled the boffins
The box problem by Alex Bellos shows Andrew is more likely to find a prize first than Barbara due to the order of searching, intriguing mathematicians with its surprising probability outcomes.