Difference between revisions of "Square (geometry)"
(cat) |
(Added picture) |
||
Line 1: | Line 1: | ||
− | A '''square''' is [[quadrilateral]] in which all [[edge|sides]] have equal length and all [[angle | angles]] are [[right angle]]s. | + | A '''square''' is a [[quadrilateral]] in which all [[edge|sides]] have equal length and all [[angle | angles]] are [[right angle]]s. |
+ | |||
+ | <asy> | ||
+ | import markers; | ||
+ | pair A, B, C, D; | ||
+ | |||
+ | A = (-1, 1); | ||
+ | B = (1, 1); | ||
+ | C = (1, -1); | ||
+ | D = (-1, -1); | ||
+ | |||
+ | draw(A--B--C--D--cycle); | ||
+ | draw(rightanglemark(A, B, C)); | ||
+ | draw(rightanglemark(B, C, D)); | ||
+ | draw(rightanglemark(C, D, A)); | ||
+ | draw(rightanglemark(D, A, B)); | ||
+ | draw(A--B--C--D--cycle, StickIntervalMarker(4)); | ||
+ | </asy> | ||
Equivalently, the squares are the [[regular polygon|regular]] quadrilaterals. | Equivalently, the squares are the [[regular polygon|regular]] quadrilaterals. |
Revision as of 00:12, 13 June 2022
A square is a quadrilateral in which all sides have equal length and all angles are right angles.
Equivalently, the squares are the regular quadrilaterals.
Introductory
Area
The area of a square can be found by squaring the square's side length: the area of a square with side length is .
Perimeter
The perimeter of a square can be found by multiplying the square's side length by four - .
Diagonal
The length of either diagonal of a square can be obtained by the Pythagorean theorem.