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:
19×24+ 19×46
= 19×(24+46)
= 19×70
= 1330
Expand data → vertical calculation-calculation result: first align the last digits of the two multipliers, then use the second multipliers respectively, multiply each digit by one 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;
Problem solving process:
Step 1: 9×70=630
Step 2: 1×70=700
According to the above calculation results, the total is 1330.
If in doubt, please ask questions. If satisfied, please adopt them.