Thinking of solving problems: Four arithmetic rules (calculation in sequence, first multiplication and division, then addition and subtraction, first parenthesis, first power), that is, disjoint operation (recursive equation calculation), should be carried out on the premise of this principle.
Problem solving process:
125×32×25
= 125×8×(4×25)
= 1000× 100
= 100000
Expand data: first align the last digit of the two multipliers, then use the second multipliers respectively, multiply each digit by a multiplier in turn from the last digit, and finally accumulate the calculation results into a product. If the multiplier is decimal, the corresponding multiple can be expanded first, and then the product can be reduced by the corresponding multiple;
125×32 problem solving process:
Step 1: 2× 125=250
Step 2: 3× 125=3750
According to the results of the above steps, the added product is 4000.
Checking calculation: 4000÷32= 125
If in doubt, please ask questions. If satisfied, please adopt them.