Mission progress
0 / 10
Chapter 25 · Defined Operations

Follow Recursive Definitions and Discover Repeated Patterns

Some operations feed yesterday’s output into today’s step. Others define a new value from an earlier one, or reveal an intended pattern through examples. Build a short state table, name the rule precisely, and then jump ahead without losing the order.

State → next stateBase caseLeft-to-right chainsRepeated digitsPattern evidence

Three structures that look similar—but are not identical

repeat an operation · follow a recurrence · infer the intended pattern

In all three, several small stages reveal the long behavior. The safe habit is to record each state, including the starting state, before trying to jump ahead.

Keep the rule visible. The same star or triangle may be redefined in the next problem. A pattern shown by examples is also different from a complete algebraic definition.
1
Choose the structure

Know what kind of repeated rule you are reading

Not complete

Repeated binary operation

1*9*9*⋯*9

The current output becomes the next left input. Parentheses or a stated left-to-right convention control the route.

Recursive definition

a⊙1=a,
a⊙n=2[a⊙(n−1)]+a

A base case starts the process. Every later value refers to an earlier value.

Pattern inferred from examples

6*2=6+66,
2*3=2+22+222

The examples show the worked example’s intended pattern, but a finite list is not itself a complete mathematical definition.

Classify each original form.
Need a hint?

Look for a base case. A list of examples alone is not a unique definition.

2
Example 4

Watch one operation append a new digit

Not complete
A*B=A×B+A+B
When the right input is 9, A*9=9A+A+9=10A+9. Multiplying by 10 shifts every digit left, and adding 9 appends one new 9.
operations10
number of 9s10
total digits11
current value19,999,999,999
StepPrevious stateApply *9New state
Complete the worked example investigation.
Need a hint?

The starting 1 is step zero. Each *9 adds one digit 9.

3
Added state laboratory

Describe the state change before jumping ahead

Not complete

Why the shifted-state shortcut works

One step is x next = (b+1)x+b. Add 1 to both sides: x next + 1 = (b+1)(x+1). Therefore every step multiplies the shifted state by b+1. After n steps the shifted state is (starting state + 1) × (b+1)n. Subtract 1 only at the end.

One step

x*b=(b+1)x+b

The old output is the complete new left input.

A useful shifted state

xnext+1=(b+1)(x+1)

Adding 1 before and after turns the recurrence into repeated multiplication.

multiplier each step5
final state374
final state + 1375
closed-form check374
StepCalculationStateShifted state
Checkpoint preset: start at 2, repeat the right input 4 three times.
Need a hint?

Track x+1; it multiplies by b+1 at every step.

4
Exercise 4

Track a long left-associated chain with coefficients

Not complete

The worked example allows integer a. This slider shows positive examples only. The coefficient calculation works for every integer a, and 1013a=3039 forces the positive answer a=3.

x△y=2x+y
A custom operator has no automatic associativity. The worked example intends the chain to run from left to right:
(((((((a△2a)△3a)△4a)△5a)△6a)△7a)△8a)△9a.
triangle operations8
final coefficient1013
chosen a3
final output3039
StageNew right inputCoefficient recurrenceCurrent expressionValue for chosen a
Bar heights are compressed so all steps fit; compare the printed coefficients, not their heights. Tracking only the coefficient of a keeps every number small. If the current state is ca, then the next stage with ka has coefficient 2c+k.
Solve the worked example equation in which the final output is 3039.
Need a hint?

Track the coefficient c of a. Each next input ka changes c to 2c+k.

5
Test 25 Question 6

Begin with the base case, then climb the recursion

Not complete

Why is the coefficient 2n−1?

The coefficients start 1, 3, 7, 15, … . Add 1 to each and they become 2, 4, 8, 16, … . Doubling the previous coefficient and adding 1 means the shifted coefficient doubles each time. At step n it is 2n, so the original coefficient is 2n−1.

coefficient at n=415
m from m⊙4=302
coefficient at n=8255
m⊙8510
Square brackets in this recurrence only group an expression; they do not mean integer part. The index n is a positive integer: n=1 is the base case, not step zero. The coefficients are 1, 3, 7, 15, 31, …. Each coefficient is double the previous one plus 1, so the coefficient at step n is 2n−1.
For the fixed problem m⊙4=30, complete these values (independent of the explorer settings).
Need a hint?

Add 1 to the coefficient sequence 1,3,7,15 to reveal powers of 2.

6
Test 25 Question 2

Infer the worked example’s repeated-digit pattern

Not complete
6*2=6+66=72

Two summands: one 6, then two 6s.

2*3=2+22+222=246

Three summands, increasing the run by one digit each time.

1*4=1+11+111+1111=1234

Four summands under the same intended pattern.

These examples indicate the intended repeated-digit rule. A finite list of examples does not logically determine one unique operation, so this page states the intended pattern before using it.
7+77+777+7777+77777=86415
summands5
largest repdigit77,777
sum86,415
digits in sum5
Evaluate the worked example expression 7*5.
Need a hint?

Write every summand before adding. The final summand has the specified number of repeated digits.

7
Test 25 Question 7

Use an explicit repdigit definition and search for the input

Not complete
a*b=a+aa+aaa+⋯+the repdigit containing b copies of a

Here a is one digit from 1 through 9, b is a positive integer, and aa means two joined copies of the digit, not a×a. For the worked example equation 1*x=123456789, the definition is explicit. We may generate the values in order and stop when the target appears.

xSummands1*xTarget status
For x≤9, no column carries occur, so the sums are 1, 12, 123, …, 123456789. At x=10, a carry changes the pattern to 1234567900.
matching x9
number of summands9
largest summand111,111,111
next value, 1*101,234,567,900
Each new summand is positive, so these totals strictly increase. Once the target is reached, no later input can give it again. Recover the missing input and check the next state.
Need a hint?

Check the next state after the target: carrying can change the visible digit pattern.

8
Exercise 10

Turn two examples into the intended consecutive-sum rule

Not complete
2△3=2+3+4=9

Start at 2 and add 3 consecutive numbers.

5△4=5+6+7+8=26

Start at 5 and add 4 consecutive numbers.

a△b=a+(a+1)+⋯+(a+b−1)

This is the intended rule used for the questions.

first term7
last term10
number of terms4
sum34
Complete all three original tasks.
Need a hint?

Use exactly b consecutive terms, starting at a and ending at a+b−1.

9
Independent practice

Recursive definitions and repeated-pattern workshop

Not complete

Correct all eight questions to complete the workshop. Every question repeats its current definition so no symbol meaning carries over accidentally.

Need a hint?

Answers:19999;374;26;93;3;492;123456;40. For the coefficient chain use1→4→11→26. For recursion use2⁵−1=31, then multiply by3. Repeated digits give4+44+444=492; the consecutive sum is6+7+8+9+10=40.

10
Five-question check

Exit ticket and certificate

Not complete
Need a hint?

Answers:recursive definition;19999999999;3;510;86415. Ten *9 operations append ten9s to the starting1. The coefficient1013 givesa=3039/1013=3. From15m=30 getm=2, then255m=510. Finally7+77+777+7777+77777=86415.

This response is saved but does not affect mission completion.
Chapter 25 Achievement

Recursive Rule & Pattern Navigator

This certifies that the learner can distinguish repeated operations, recursive definitions, and inferred patterns; build state tables; follow left-associated chains; and use repeated-digit and consecutive-sum structures accurately.

Lesson 25.4 complete