Young InnovatorsFOR CHANGEinnovateyouth.org

The Best Way · Teacher Guide

Grade 5 discrete mathematics, 36 weeks. Answers, and what each week is actually teaching. Every one of the 406 answers below is recomputed from the workbook problem by verify.py before this page ships.

Week 1 Steps & Cost

What Is a Step?

Before you can say one method is better, you have to say what you are counting.

In class this week: Multi-digit multiplication and division (5.NBT.5, 5.NBT.6)

Teaching noteThe year opens with a method and a lower bound on the same page, which is the shape it returns to in weeks 10, 27 and 30. Children find the loser argument slippery: every card except the champion must lose at least once, and one comparison makes exactly one loser.
QuestionAnswer
1a cards left7
1b cost7
2a losers7
2b losers per comparison1
2c cannot beat7
3 8 cards7
3 20 cards19
3 100 cards99
3 n cardsn minus 1
challenge lazy way13
challenge tournament9
Week 2 Steps & Cost

Two Sorts, Counted

Two methods, the same cards, the same finish, and very different bills.

In class this week: Multi-digit operations; expressions (5.NBT.5, 5.OA.1)

Teaching noteSelection sort costs the same on every hand and insertion sort does not. That difference is worth more than either number. The backwards hand ties selection at 28, and it is not a coincidence: both end up making every possible comparison.
QuestionAnswer
1a selection run28
1b depends on startno
2 card 31
2 card 91
2 card 13
2 card 53
2 card 82
2 card 26
2 card 64
2 total20
3 already sorted7
3 backwards28
3 our hand20
3 which ties selectionexactly backwards
challenge twenty cards190
challenge hundred cards4950
challenge the rulen times n minus 1, over 2
Week 3 Steps & Cost

Sorting by Splitting

Cut the pile in half, sort both halves, then zip them together.

In class this week: Problem solving with whole numbers (5.OA.1, 5.NBT.5)

Teaching noteMerge sort by hand is slow and fiddly and the count is the point, not the sorting. Work one layer at a time. The 64-card row is where the gap stops being arguable.
QuestionAnswer
1a merge two ones1
1a four such merges4
1b merge two twos3
1b two such merges6
1c merge two fours7
1c total17
3 8 selection28
3 8 merge17
3 16 selection120
3 16 merge49
3 64 selection2016
3 64 merge321
challenge 1024 merge9217
challenge 1024 layers10
Week 4 Steps & Cost

Searching a Sorted List

Halving is so much better than looking that the numbers stop feeling real.

In class this week: Place value and powers of ten (5.NBT.1, 5.NBT.2)

Teaching notePlay this out loud before writing. The million-name row is the moment: twenty looks.
QuestionAnswer
1 32 looks5
1 1000 looks10
1 1000000 looks20
1 how much longeronly 10 more looks
3a needs to besorted
3b searches to pay off1000
challenge billion30
challenge real factor100
Week 5 Number Structure

Doubling and Halving

The numbers behind last week. They get very big very fast.

In class this week: Powers of ten and place value (5.NBT.2)

Teaching noteThe doubling table is the reference page for the rest of the year. Twenty doublings passing a million surprises adults too.
QuestionAnswer
1 two to the 12
1 two to the 24
1 two to the 38
1 two to the 416
1 two to the 532
1 two to the 664
1 two to the 7128
1 two to the 8256
1 two to the 9512
1 two to the 101024
1a just overone thousand
1b halvings of 102410
2 two to the 1665536
2 two to the 201048576
2 two to the 301073741824
2 compare with a millionjust over a million
3a ten to the sixth1000000
3b doublings past a million20
challenge penny day27
challenge that amount1342177.28
Week 6 Steps & Cost

The Greedy Rule

Take the biggest that fits, then do it again. Simple, fast, and usually right.

In class this week: Decimal operations with money (5.NBT.7)

Teaching noteGreedy is right for American coins and the page says honestly that this is luck rather than proof. Do not let a child conclude that greedy always works, because next week is built on the opposite.
QuestionAnswer
1 coins for 687
2 41 greedy4
2 99 greedy9
2 87 greedy6
3 can you beat 99no
challenge 636
challenge 647
challenge without the nickel11
Week 7 Steps & Cost

When Greedy Fails

Change three coins and the simple rule starts giving wrong answers.

In class this week: Decimal and whole number operations (5.NBT.7, 5.OA.1)

Teaching noteOne counterexample demotes greedy from always to usually. Six is the smallest amount where the coins 1, 3 and 4 defeat it, and the amounts below 20 where it loses are 6, 10, 14 and 18, which is a pattern worth noticing.
QuestionAnswer
1a biggest that fits4
1a left to make2
1b greedy total3
1c best2
2 6 greedy3
2 6 best2
2 8 greedy2
2 8 best2
2 9 greedy3
2 9 best3
2 11 greedy3
2 11 best3
2 12 greedy3
2 12 best3
challenge amounts greedy loses below 206, 10, 14, 18
Week 8 Dots & Lines

Shortest Path With Costs

Not the fewest roads. The cheapest total, in dollars and cents.

In class this week: Adding and subtracting decimals (5.NBT.7)

Teaching noteDecimals in the edge weights are deliberate: 5.NBT.7 is the spine of Grade 5. The cheapest route uses four roads and the fewest-roads route uses three and costs more, which is the whole point of the page.
QuestionAnswer
1 cheapest to A0.00
1 cheapest to B2.50
1 cheapest to C1.80
1 cheapest to D5.50
1 cheapest to E4.40
1 cheapest to F6.90
2a cheapest to F6.90
2b the townsA to C to E to D to F
2c roads on it4
2c fewest roads existsyes
2c what it costs7.10
Week 9 Dots & Lines

The Cheapest Network

Two completely different methods. Same answer, every time.

In class this week: Adding decimals; problem solving (5.NBT.7, 5.OA.1)

Teaching noteTwo methods that look nothing alike, one total. Both refuse to close a loop, and that shared refusal is the reason they agree.
QuestionAnswer
1 kruskal total7.80
1 roads takenA to C, B to C, C to E, D to F, E to D
2 prim total7.80
2 same roadsyes
2 same totalyes
3a roads5
3a towns6
3b roads to sort9
challenge with BD at fifty cents5.70
Week 10 Steps & Cost

Packing the Boxes

Same parcels, same boxes. Change the order they arrive in and you need a whole extra box.

In class this week: Volume and measurement (5.MD.3, 5.MD.5)

Teaching noteSame parcels, same method, different order, one extra box. The lower bound is what makes the sorted answer provably right rather than merely better.
QuestionAnswer
1a boxes first fit4
1b total size26
1c lower bound3
2 boxes sorted first3
2 matches lower boundyes
2 true best3
challenge lower bound3
challenge reachable3
Week 11 Steps & Cost

Scheduling the Jobs

Six jobs, thirteen days of work, and it can all be done in ten.

In class this week: Problem solving; measurement (5.OA.1, 5.MD.1)

Teaching noteThirteen days of work finishing in ten. Children want to speed up whichever job looks hardest; the page teaches them to speed up whichever job is on the chain.
QuestionAnswer
1a chain days10
1b every job added13
2 finishes on day10
3a which job to shortenany job on the critical path
3b speeding up plantnothing, it is not on the critical path
challenge frame at six12
challenge with a roof12
Week 12 Steps & Cost

Method Fair

One problem, four methods, one bill each.

In class this week: Problem solving (5.OA.1)

Teaching noteThe sort-once-or-search-once question is the trimester in one line. There is no single right answer and children should be allowed to argue about the switching point.
QuestionAnswer
selection on 642016
merge on 64321
look one at a time on 6464
binary search on 646
1a the fair pairthe two sorts, or the two searches
2c searches to pay off53
Week 13 Logic & Proof

Case Files

Everything from the first twelve weeks, priced.

In class this week: Review & reasoning

Teaching noteReview. Case 4 needs a lower bound and a packing, and the two agree at 3.
QuestionAnswer
1 thirty cards29
2 selection on twelve66
2 insertion worst on twelve66
3 greedy eight2
3 best eight2
4 lower bound3
4 true best3
5 finishes on day12
Week 14 Ways of Counting

Counting on a Grid

Streets on a coordinate grid, and only two directions allowed.

In class this week: The coordinate plane (5.G.1, 5.G.2)

Teaching noteGrade 3 built these grids without coordinates. The new part is noticing that every route is seven steps and a route is just a choice of which three go up.
QuestionAnswer
1b routes to END35
2 routes to (2, 1)3
2 routes to (3, 1)4
2 routes to (2, 2)6
2 routes to (4, 3)35
3a steps right4
3a steps up3
3b every route length7
challenge five by three56
challenge four by four70
Week 15 Ways of Counting

Paths That Avoid a Block

Count everything, then subtract the ones you did not want.

In class this week: The coordinate plane; problem solving (5.G.1, 5.OA.1)

Teaching noteCounting the bad ones and subtracting. The multiplication of the two halves is the step children skip; ask why it is not an addition.
QuestionAnswer
1a routes to the block3
1b routes on from it6
1c bad routes18
2a all routes35
2b surviving17
3 the slow way agreesyes
challenge block one one15
challenge block two corners7
Week 16 Ways of Counting

Two Circles, Then Three

Add the three clubs and you have counted some children twice and some three times.

In class this week: Problem solving with whole numbers (5.OA.1)

Teaching noteFill the middle first and work outward. Every number given already includes what is inside it, which is the source of nearly every error on this page.
QuestionAnswer
1 region ABC3
1 region AB4
1 region AC5
1 region BC2
1 region A6
1 region B3
1 region C4
2a seven regions add to27
2b the short way27
2c same answeryes
2c no club3
3 counted in the total1
challenge neither of two9
challenge nothing of three2
Week 17 Ways of Counting

Counting the Leftovers

Sometimes the fastest way to count what you want is to count what you do not.

In class this week: Place value and multi-digit numbers (5.NBT.1, 5.OA.1)

Teaching noteThe words <b>at least one</b> should now trigger a reflex: count them all, count the ones with none, subtract. The first digit having 8 choices rather than 9 is the usual slip.
QuestionAnswer
1a three digit numbers900
1b first digit choices8
1b second digit choices9
1b third digit choices9
2a no seven648
2b at least one seven252
3 at least one five252
3 four digit at least one zero2439
challenge at least two sevens27
challenge no digit over five1080
Week 18 Fractions

Sharing Fairly

Dividing by a fraction is a counting question in disguise.

In class this week: Dividing with unit fractions (5.NF.7)

Teaching noteTwo genuinely different questions wearing the same notation. A child who answers 3 divided by one fourth with one twelfth has answered the other one.
QuestionAnswer
1a pieces from one4
1b from three12
1c as a division12
2a shared between threeone twelfth
3 four by a half8
3 two by a sixth12
3 a third by two1/6
3 a half by four1/8
challenge rope pieces12
Week 19 Fractions

A Fraction of a Fraction

Cut a square one way, then the other. The overlap is the answer.

In class this week: Multiplying fractions as area (5.NF.4, 5.NF.6)

Teaching noteThe rule falls out of the picture rather than being announced. Do not let them multiply before they have shaded and counted.
QuestionAnswer
1a shaded6
1b in all12
1c product6 over 12
1c simplified1/2
2a shaded across3
2a shaded down2
2b grid across4
2b grid down3
3 1 over 2 of 2 over 5 shaded2
3 1 over 2 of 2 over 5 in all10
3 1 over 2 of 2 over 5 answer1/5
3 3 over 4 of 2 over 3 shaded6
3 3 over 4 of 2 over 3 in all12
3 3 over 4 of 2 over 3 answer1/2
3 2 over 5 of 3 over 4 shaded6
3 2 over 5 of 3 over 4 in all20
3 2 over 5 of 3 over 4 answer3/10
challenge four fifths of five eighths1/2
challenge half of half of half1/8
Week 20 Number Structure

Powers and Place Value

Every column is ten times the one on its right, and that is a rule you can push around.

In class this week: Powers of ten and place value (5.NBT.2)

Teaching noteDigits do not change when you multiply by a power of ten. Only the column they sit in changes, and saying it that way round prevents a lot of later trouble.
QuestionAnswer
1 2.5 times ten cubed2500.0
1 340 by ten squared3.4
1 0.06 times ten to the fourth600.0
1 9100 by ten cubed9.1
2a columns moved3
2a directionleft
2b columns moved2
2b directionright
challenge which is biggerthey are equal
challenge 470004.7 times ten to the fourth
Week 21 Number Structure

Base Five

A whole number system with only five digits. Not a code, a way of counting.

In class this week: Place value and powers (5.NBT.1, 5.NBT.2)

Teaching noteBase five is a number system, not a code. Converting into base five is the greedy rule from week 6, applied to place values, and saying so out loud helps.
QuestionAnswer
1a first column125
1a second column25
1a third column5
1a fourth column1
1b in base ten266
2 2031 base five266
2 400 base five100
2 1234 base five194
2 63 in base five223
2 100 in base five400
3 counting to twelve10, 11, 12, 13, 14, 20, 21, 22
challenge 200 in base five1300
challenge 500 in base five4000
challenge which base gives 100 as 255
Week 22 Number Structure

Carrying in Base Five

Column addition works in any base. Only the moment you carry changes.

In class this week: Adding within a place value system (5.NBT.7, 5.NBT.1)

Teaching noteColumn addition is identical in any base. Only the moment you carry moves. The row 444 + 1 is the one to look at twice.
QuestionAnswer
1a three plus four7
1a is it five or moreyes
1b write2
1b carry1
1c fives column4
1c answer42
2a 23 in base ten13
2a 14 in base ten9
2b added22
2b converted back22
3 12 plus 1330
3 12 plus 13 in base ten15
3 34 plus 22111
3 34 plus 22 in base ten31
3 444 plus 11000
3 444 plus 1 in base ten125
challenge 1234 plus 432111110
Week 23 Steps & Cost

How a Machine Adds

Two digits, one carry, and that is the entire arithmetic of a computer.

In class this week: Place value in another base (5.NBT.1)

Teaching noteFour cases is the entire arithmetic of a machine. That is a genuinely startling fact and worth pausing on.
QuestionAnswer
1 0 and 0 write0
1 0 and 0 carry0
1 0 and 1 write1
1 0 and 1 carry0
1 1 and 0 write1
1 1 and 0 carry0
1 1 and 1 write0
1 1 and 1 carry1
2a sum in base two10001
2b bits in the answer5
3a 1011 in base ten11
3a 0110 in base ten6
3b added17
challenge 1111 plus 000110000
challenge bits for 1007
challenge bits for 100010
Week 24 Steps & Cost

Logic Gates

Three tiny machines. Wire them together and you get last week’s adding.

In class this week: Reasoning and patterns (5.OA.1, 5.OA.3)

Teaching noteCarry is AND and write is exclusive or. Two gates make an adder, and the child has already built the truth table for it the week before without knowing.
QuestionAnswer
1a AND ones1
1b OR ones3
2a carry gateAND
2b the row where OR differs1 and 1
3 NAND outputs1, 1, 1, 0
challenge both zero gateOR then NOT, which is NOR
Week 25 Logic & Proof

Puzzle Fair

A little of everything from Weeks 14 to 24.

In class this week: Review & reasoning

Teaching noteReview. Puzzle 5 leaves a third of a meter over, which several children will round away.
QuestionAnswer
1 blocked five by two9
2 none of three6
3 no nine at all648
4 302 base five in ten77
4 88 in base five323
5 whole pieces7
5 left over1/3
6 NOR outputs1, 0, 0, 0
Week 26 Dots & Lines

Flow Through a Network

Water, not routes. How much can you push from one end to the other?

In class this week: Problem solving; volume (5.OA.1, 5.MD.5)

Teaching noteSend water down one path at a time and reduce the pipes as you go. The A to B pipe carries only 2 and is the reason the total reaches 10 rather than 9.
QuestionAnswer
1 S to A to T5
1 S to B to T4
1 S to A to B to T1
1 total sent10
2a leaving S10
2b arriving at T12
2c which matchedthe pipes leaving S
challenge S to B at eight12
challenge A to T at nine10
Week 27 Dots & Lines

The Bottleneck

The answer is never about the big pipes. It is about the narrow place.

In class this week: Problem solving (5.OA.1)

Teaching noteThe bottleneck is in the middle, not at the ends, so widening the obvious pipes changes nothing. Flow equals the smallest cut here, as it always does.
QuestionAnswer
1 cut at S18
1 cut after A and B5
1 cut after C9
1 smallest cut5
2a flow reached5
2b comparethey are equal
3a can never be more thanthe smallest cut
3b the bottleneck pipesA to C and B to C
challenge A to C at six9
challenge new cut9
Week 28 Dots & Lines

Matching People to Jobs

Greedy gets stuck. Then you fix it without starting over.

In class this week: Problem solving (5.OA.1)

Teaching noteGreedy strands B and the swap chain rescues it without starting over. That is the first time this year a method is repaired rather than replaced.
QuestionAnswer
1 greedy matched3
1 left outB
1 greedy gives A1
1 greedy gives Bnothing
1 greedy gives C2
1 greedy gives D3
2a who has job oneA
2c after the swap4
3 A ends with2
3 B ends with1
3 C ends with3
3 D ends with4
challenge without C to three3
Week 29 Dots & Lines

Coloring, and How Good Is Greedy?

Six clubs, two slots are enough, and greedy uses three. The order is to blame.

In class this week: Problem solving (5.OA.1)

Teaching noteThe order defeats greedy. Two slots are enough, the graph has no triangle at all, and greedy in the wrong order uses three. Dijkstra is also greedy and never wrong, and the difference between those two facts is worth discussing.
QuestionAnswer
1 bad order Art1
1 bad order Drama1
1 bad order Band2
1 bad order Eco2
1 bad order Chess3
1 bad order Film3
1 slots in the bad order3
2 good order Art1
2 good order Band1
2 good order Chess1
2 good order Drama2
2 good order Eco2
2 good order Film2
2 slots in the good order2
3a cannot be fewer than2
3b true answer2
3b triangle in the graphno
Week 30 Logic & Proof

A Lower Bound

Two halves make an answer: a method that works, and a proof nothing beats it.

In class this week: Problem solving and reasoning (5.OA.1)

Teaching noteA method and a lower bound, meeting. The table at the end connects this to weeks 1, 10 and 27, which is the argument that the year had a shape.
QuestionAnswer
1a three that clashP, Q, R
1b lower bound3
2 slots used3
2 matchesyes
3 week 1 lower boundevery loser needs a comparison
3 week 10 lower boundtotal size divided by box size, rounded up
3 week 27 lower boundthe smallest cut
challenge sixth room4
Week 31 Ways of Counting

Rules That Look Back

To count a strip of ten, count a strip of nine and a strip of eight.

In class this week: Patterns and rules (5.OA.3)

Teaching noteEnds in a 1 or ends in a 2, with no third case. That is the whole proof of the recurrence, and it is short enough for a fifth grader to own.
QuestionAnswer
1 strip of 11
1 strip of 22
1 strip of 33
1 strip of 45
1 strip of 58
1 strip of 613
1 each isthe two before it added
2b ends in a one5
2c ends in a two4
3 strip of twelve233
challenge with threes too1, 2, 4, 7, 13, 24, 44, 81
challenge ones and threes1, 1, 2, 3, 4, 6, 9, 13
Week 32 Ways of Counting

A Rule From a Table

Two patterns started together. One is always double the other, and you can see why.

In class this week: Generating patterns and graphing pairs (5.OA.3, 5.G.1)

Teaching noteThe first page in the book with a letter standing for a number. Grade 6 is a whole year of this, so it is worth taking slowly.
QuestionAnswer
1 pattern A0, 3, 6, 9, 12, 15, 18
1 pattern B0, 6, 12, 18, 24, 30, 36
1a B isdouble
2 the points makea straight line
3a A at step n3 times n
3b B at step n6 times n
challenge C double anythingno
Week 33 Logic & Proof

Two Rules, One Answer

A formula and a count that disagree cannot both be right, so check.

In class this week: Reasoning about patterns (5.OA.3, 5.OA.1)

Teaching noteChecking is not proving, and the false rule surviving three tests before dying on the fourth is the most useful thing on the page.
QuestionAnswer
1 biggest of six rule5
1 biggest of six counted5
1 selection of five rule10
1 selection of five counted10
1 tree of seven rule6
1 tree of seven counted6
2a n equals one rule1
2a n equals one truth1
2b n equals two rule2
2b n equals two truth2
2c n equals three rule3
2c n equals three truth3
2d n equals four rule4
2d n equals four truth5
2d first fails at4
3 strip of seven21
challenge smallest graph over n lines3
Week 34 Steps & Cost

Sorting Really Big Lists

At eight cards it hardly matters. At a thousand it decides whether the job is possible.

In class this week: Multi-digit operations; patterns (5.NBT.5, 5.OA.3)

Teaching noteSix days against under three hours, for the same 1,024 cards. Growth, not speed, is what the year has really been measuring.
QuestionAnswer
1 8 selection28
1 8 merge17
1 64 selection2016
1 64 merge321
1 1024 selection523776
1 1024 merge9217
1a list grew by8
1a selection grew by72
1b merge grew by18
3a selection seconds523776
3a in days6.1
3b merge seconds9217
3b in hours2.6
challenge million selection499999500000
challenge million merge18951425
Week 35 Steps & Cost

Which Method Would You Pay For?

The last real week. A decision, with money on it.

In class this week: Decimal operations in context (5.NBT.7, 5.OA.1)

Teaching noteThe numbers are arranged so the answer flips. Sorting daily, merge sort pays back in 41 days and saves over three thousand dollars a year. Sorting monthly, twelve runs save about $120 and the $400 is not worth spending. Same methods, same list, different answer.
QuestionAnswer
table selection comparisons49995000
table merge comparisons123617
1a selection a morning10.00
1b merge a morning0.02
1c saved in a year3640.61
2a days to pay back41
2b cheaper over a yearmerge sort
2b by how much3240.61
3 twelve sorts a year saves119.69
3 worth the 400 dollarsno
challenge at a tenth the price still worth itno
Week 36 Steps & Cost

The Method Book, Finished

Thirty-three pages of methods, each with its price. This week it becomes one book.

In class this week: Review of the year

Teaching noteAssembly. A page without a cost on it is not finished, and that is the only test.
QuestionAnswer
2a largest of 500499
2b find one in a sorted 5009
2c search oncedo not sort, just look
2d search a thousand timessort with merge sort, then binary search