Vous êtes sur la page 1sur 1

Square trick 1: Square of a Number ending in 5

Using this trick you can find the square of all numbers having 5 as the last digit.
Condition:
1. The number should have 5at the end.
Short trick used:
(Left) * (Left +1) |25
Example 1
Suppose we want to find the square of 75.
Here last digit is 5 and left part is 7
Solution:
(Left)*(Left + 1)|25
=(7)*(7+1)|25
=7*8|25
=56|25
=5625

Example 2
Suppose we want to find the square of 205.
Here last digit is 5 and left part is 20
Solution:
(Left)*(Left + 1)|25
=(20)*(20+1)|25
=20*21|25
=420|25
=42025

Vous aimerez peut-être aussi