Mathematics
Grade 9
15 min
Add two two-digit numbers - with regrouping
Add two two-digit numbers - with regrouping
Tutorial Preview
1
Introduction & Learning Objectives
Learning Objectives
Represent any two-digit number as a first-degree polynomial in terms of its base.
Model the process of 'regrouping' using floor functions and modular arithmetic.
Deconstruct the addition of two-digit numbers into a formal algebraic algorithm.
Define a recursive sequence where each term is generated by adding a constant two-digit number with regrouping.
Analyze the function that maps two two-digit numbers to their sum, focusing on the non-linear 'carry' operation.
Generalize the regrouping process to any base, connecting it to polynomial operations.
Why does 99 + 1 create a new digit place, but 45 + 52 doesn't? Let's explore the hidden functions and sequences behind this simple operation. š§
In this lesson, we will revisit th...
2
Key Concepts & Vocabulary
TermDefinitionExample
Polynomial Representation of IntegersA method of expressing a number as a polynomial evaluated at its base. A two-digit number 'ab' is represented as the polynomial P(x) = ax + b, where x = 10.The number 74 can be represented as the polynomial P(x) = 7x + 4. When evaluated at its base (x=10), P(10) = 7(10) + 4 = 74.
Regrouping (Carry Operation)The algorithmic process in base-10 addition where a sum in a place value column that is 10 or greater is decomposed. The ones digit of the sum remains in the column, and the tens digit is 'carried' over to the next column of higher value.In 8 + 7 = 15, the '5' is the result in the ones column, and the '1' is the carry value transferred to the tens column.
Floor FunctionThe function that t...
3
Core Formulas
Algebraic Addition of Two-Digit Numbers
(10a + b) + (10c + d) = 10(a+c) + (b+d)
This formula represents the sum of two two-digit numbers, 'ab' and 'cd', by separating their place values. This is the initial step before accounting for the regrouping operation.
Functional Definition of Regrouping
Given a sum of digits in a column, S. The resulting digit is D = S \pmod{10} and the carry is C = \lfloor S/10 \rfloor.
This pair of formulas precisely defines the regrouping process. The modulus operator gives the digit to write down, and the floor function gives the digit to carry to the next column.
Complete Sum Algorithm
Let S = (10a+b) + (10c+d). Let c_1 = \lfloor (b+d)/10 \rfloor and d_0 = (b+d) \pmod{10}. Let c_2 = \lfloor (a+c+c_1)/10 \rfloor and d_1...
4 more steps in this tutorial
Sign up free to access the complete tutorial with worked examples and practice.
Sign Up Free to ContinueSample Practice Questions
Challenging
A recursive sequence is defined by aāāā = aā + K, where K is a constant two-digit number. If aā = 47 and aā = 119, what is the value of K?
A.28
B.36
C.72
D.42
Challenging
When adding two two-digit numbers, 10a+b and 10c+d, what conditions on the digits a, b, c, d must be met for NO regrouping to occur at all?
A.b+d > 10 and a+c > 10
B.b+d < 10 and a+c < 10
C.b+d < 10 and a+c+1 < 10
D.b+d ⤠10 and a+c ⤠10
Challenging
A 'cascading carry' occurs when adding 10a+b and 10c+d if a carry from the ones column (cā > 0) contributes to causing a carry from the tens column (cā > 0). Which set of numbers would result in a cascading carry?
A.52 + 31
B.91 + 82
C.28 + 37
D.98 + 17
Want to practice and check your answers?
Sign up to access all questions with instant feedback, explanations, and progress tracking.
Start Practicing Free