A new symbol can define a custom operation
For any two numbers and , the operation is defined by . Find the value of .
Show solution
Understand
A new symbol is defined so that a-diamond-b means a times b, then plus 30. Using this rule, first compute 32-diamond-15, then take that result diamond 23.
- The operation is defined by a ◆ b = a × b + 30
- We must evaluate (32 ◆ 15) ◆ 23
- The value of (32 ◆ 15) ◆ 23
- The inner parentheses must be evaluated first
- Each ◆ means multiply the two numbers and add 30
Plan
#7 Identify Subproblems · also uses: #5 Look for a Pattern
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.
Execute
Review
The answer is dominated by 510 x 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.
Use Look for a Pattern (tool 5) by noticing every application adds the same constant 30, so you could compute both products first (480 and 11730) and add 30 once per step, confirming 11760.
Standards · min grade 5
4.OA.A.3Solve multi-step word problems using four operations with whole numbers — Carrying out the multiply-then-add steps required by the custom operation.5.OA.A.1Use parentheses, brackets, or braces in numerical expressions and evaluate — Evaluating the inner parentheses (32 ◆ 15) before the outer operation.