Properties
The number m is a square number if and only if one can arrange m points in a square:
m = 12 = 1 | |
m = 22 = 4 | |
m = 32 = 9 | |
m = 42 = 16 | |
m = 52 = 25 |
The expression for the nth square number is n2. This is also equal to the sum of the first n odd numbers as can be seen in the above pictures, where a square results from the previous one by adding an odd number of points (shown in magenta). The formula follows:
So for example, 52 = 25 = 1 + 3 + 5 + 7 + 9.
There are several recursive methods for computing square numbers. For example, the nth square number can be computed from the previous square by . Alternatively, the nth square number can be calculated from the previous two by doubling the (n − 1)-th square, subtracting the (n − 2)-th square number, and adding 2, because n2 = 2(n − 1)2 − (n − 2)2 + 2. For example,
- 2 × 52 − 42 + 2 = 2 × 25 − 16 + 2 = 50 − 16 + 2 = 36 = 62.
A square number is also the sum of two consecutive triangular numbers. The sum of two consecutive square numbers is a centered square number. Every odd square is also a centered octagonal number.
Another property of a square number is that it has an odd number of divisors, while other numbers have an even number of divisors. An integer root is the only divisor that pairs up with itself to yield the square number, while other divisors come in pairs.
Lagrange's four-square theorem states that any positive integer can be written as the sum of four or fewer perfect squares. Three squares are not sufficient for numbers of the form 4k(8m + 7). A positive integer can be represented as a sum of two squares precisely if its prime factorization contains no odd powers of primes of the form 4k + 3. This is generalized by Waring's problem.
A square number can end only with digits 0, 1, 4, 6, 9, or 25 in base 10, as follows:
- If the last digit of a number is 0, its square ends in an even number of 0s (so at least 00) and the digits preceding the ending 0s must also form a square.
- If the last digit of a number is 1 or 9, its square ends in 1 and the number formed by its preceding digits must be divisible by four.
- If the last digit of a number is 2 or 8, its square ends in 4 and the preceding digit must be even.
- If the last digit of a number is 3 or 7, its square ends in 9 and the number formed by its preceding digits must be divisible by four.
- If the last digit of a number is 4 or 6, its square ends in 6 and the preceding digit must be odd.
- If the last digit of a number is 5, its square ends in 25 and the preceding digits must be 0, 2, 06, or 56.
In base 16, a square number can end only with 0, 1, 4 or 9 and
- in case 0, only 0, 1, 4, 9 can precede it,
- in case 4, only even numbers can precede it.
In general, if a prime p divides a square number m then the square of p must also divide m; if p fails to divide m∕p, then m is definitely not square. Repeating the divisions of the previous sentence, one concludes that every prime must divide a given perfect square an even number of times (including possibly 0 times). Thus, the number m is a square number if and only if, in its canonical representation, all exponents are even.
Squarity testing can be used as alternative way in factorization of large numbers. Instead of testing for divisibility, test for squarity: for given m and some number k, if k2 − m is the square of an integer n then k − n divides m. (This is an application of the factorization of a difference of two squares.) For example, 1002 − 9991 is the square of 3, so consequently 100 − 3 divides 9991. This test is deterministic for odd divisors in the range from k − n to k + n where k covers some range of natural numbers k ≥ √m.
A square number cannot be a perfect number.
The sum of the series of power numbers
can also be represented by the formula
The first terms of this series (the square pyramidal numbers) are:
0, 1, 5, 14, 30, 55, 91, 140, 204, 285, 385, 506, 650, 819, 1015, 1240, 1496, 1785, 2109, 2470, 2870, 3311, 3795, 4324, 4900, 5525, 6201... (sequence A000330 in OEIS).
All fourth powers, sixth powers, eighth powers and so on are perfect squares.
Read more about this topic: Square Number
Famous quotes containing the word properties:
“A drop of water has the properties of the sea, but cannot exhibit a storm. There is beauty of a concert, as well as of a flute; strength of a host, as well as of a hero.”
—Ralph Waldo Emerson (18031882)
“The reason why men enter into society, is the preservation of their property; and the end why they choose and authorize a legislative, is, that there may be laws made, and rules set, as guards and fences to the properties of all the members of the society: to limit the power, and moderate the dominion, of every part and member of the society.”
—John Locke (16321704)