Operations & Word Problems

Problem

A new symbol can define a custom operation

A new symbol is defined so that a ◆ b means a times b, then plus 30. Using this rule, first compute 32 ◆ 15, then apply ◆ 23 to that result to get (32 ◆ 15) ◆ 23.
Operations
Your answer
How to solve
Strategy Identify Subproblems — The expression has a parentheses-first structure, so we split it into two subproblems: first evaluate the inner 32 ◆ 15, then feed that result into a second application of the same rule with 23. Each application follows the identical pattern multiply-then-add-30.
1STEP 1

Evaluate the inner operation

Apply the rule to 32 and 15: 32 × 15 = 480, then 480 + 30 = 510.

32 ◆ 15 = 32 × 15 + 30 = 480 + 30 = 510
2STEP 2

Evaluate the outer operation

Apply the same rule to 510 and 23: 510 × 23 = 11730, then 11730 + 30 = 11760.

510 ◆ 23 = 510 × 23 + 30 = 11730 + 30 = 11760
Answer
11760
510 ◆ 23 = 510 × 23 + 30 = 11730 + 30 = 11760
The answer is dominated by 510 × 23 = 11730; adding 30 nudges it to 11760, which is sensibly just above 11730. Both steps follow the defined rule exactly, and the inside-first ordering was respected.
Takeaway

A made-up symbol is just a recipe -- do the inside first, then follow the same multiply-and-add-30 steps again!

  • Evaluate the inner operation
  • Evaluate the outer operation
Where next?
Another one like thissuggested
Step back and solidifysuggested

▶ Practice — 10 problems