Grade 3 ↓
Geometry
Geometry is an exciting and fun part of mathematics. It helps us understand the shapes and spaces that we see around us. In Grade 3, children learn the basics of geometry, including shapes, lines, angles, and more. Let us explore these concepts in detail.
What is geometry?
Geometry is the branch of mathematics that deals with shapes and their properties. It involves the study of points, lines, surfaces, solids, and their relationship to one another. In our daily lives, everything around us has a shape, and that is why geometry is important.
Basic Shapes
There are many shapes in geometry, but some are basic and form the building blocks of more complex shapes. Let's take a look at these shapes:
Circle
A circle is a round shape. It is perfectly round and every point on its edge is the same distance from the center.
<svg width="100" height="100"> <circle cx="50" cy="50" r="40" stroke="black" stroke-width="2" fill="none" /> </svg>
The above figure shows a circle.
Square
A square has four sides of equal length and four right angles.
<svg width="100" height="100"> <rect width="80" height="80" x="10" y="10" stroke="black" stroke-width="2" fill="none" /> </svg>
Now look further and see that all the sides are equal.
Rectangle
A rectangle has equal opposite sides and four right angles. It is longer than it is wide or vice versa.
<svg width="150" height="100"> <rect width="120" height="60" x="15" y="20" stroke="black" stroke-width="2" fill="none" /> </svg>
It represents a rectangle with unequal adjacent sides.
Triangle
A triangle has three sides and three angles. There are different types of triangles depending upon the angles and sides.
<svg width="120" height="100"> <polygon points="60,10 10,90 110,90" stroke="black" stroke-width="2" fill="none"/> </svg>
Above is a simple triangle. Notice that this shape has three sides.
Understanding the lines
Lines are straight paths that extend somewhat endlessly in both directions. Lines can be straight or curved, but here we're focusing on straight lines.
Types of lines
Straight line
This is how it looks:
<svg width="200" height="20"> <line x1="10" y1="10" x2="190" y2="10" stroke="black" stroke-width="2" /> </svg>
Straight lines never bend. They go on endlessly in both directions.
Horizontal line
It goes from left to right:
<svg width="200" height="20"> <line x1="10" y1="10" x2="190" y2="10" stroke="black" stroke-width="2" /> </svg>
It is a horizontal line, similar to the horizon.
Vertical line
It goes up and down:
<svg width="20" height="200"> <line x1="10" y1="10" x2="10" y2="190" stroke="black" stroke-width="2" /> </svg>
A vertical line looks like this.
Parallel lines
Parallel lines are equidistant from each other and never meet:
<svg width="200" height="50"> <line x1="10" y1="10" x2="190" y2="10" stroke="black" stroke-width="2" /> <line x1="10" y1="40" x2="190" y2="40" stroke="black" stroke-width="2" /> </svg>
The lines above are parallel.
Intersected lines
Intersecting lines cross each other:
<svg width="200" height="200"> <line x1="10" y1="10" x2="190" y2="190" stroke="black" stroke-width="2" /> <line x1="190" y1="10" x2="10" y2="190" stroke="black" stroke-width="2" /> </svg>
Where they meet is called the point of intersection.
Finding angles
Angles are formed when two lines meet at a point. The space between the two lines forms an angle.
Types of angles
Right angle
Right angles look like this:
<svg width="100" height="100"> <line x1="50" y1="50" x2="50" y2="10" stroke="black" stroke-width="2"/> <line x1="50" y1="50" x2="90" y2="50" stroke="black" stroke-width="2"/> </svg>
This angle is 90 degrees.
Acute angle
Acute angles are smaller than right angles:
<svg width="100" height="100"> <line x1="50" y1="50" x2="80" y2="30" stroke="black" stroke-width="2"/> <line x1="50" y1="50" x2="90" y2="50" stroke="black" stroke-width="2"/> </svg>
The angles are less than 90 degrees.
Obtuse angle
Obtuse angles are larger than right angles:
<svg width="100" height="100"> <line x1="50" y1="50" x2="30" y2="70" stroke="black" stroke-width="2"/> <line x1="50" y1="50" x2="90" y2="50" stroke="black" stroke-width="2"/> </svg>
The angle is greater than 90 degrees.
Polygons and their properties
Polygons are shapes with three or more straight sides. They are named based on the number of sides:
Triangle (3 sides)
As we saw earlier, triangles are simple polygons with three sides.
<svg width="120" height="100"> <polygon points="60,10 10,90 110,90" stroke="black" stroke-width="2" fill="none"/> </svg>
Quadrilateral (4 sides)
A quadrilateral has four sides. For example, square and rectangle.
<svg width="120" height="100"> <polygon points="30,10 90,10 110,70 10,70" stroke="black" stroke-width="2" fill="none"/> </svg>
Pentagon (5 sides)
<svg width="150" height="150"> <polygon points="75,20 30,80 50,140 100,140 120,80" stroke="black" stroke-width="2" fill="none"/> </svg>
A pentagon has five sides.
Hexagon (6 sides)
<svg width="150" height="150"> <polygon points="75,10 20,50 20,100 75,140 130,100 130,50" stroke="black" stroke-width="2" fill="none"/> </svg>
Six-sided hexagons are often seen in nature, such as beehives.
More examples of shapes
Discover more shapes, like heptagons (7 sides), octagons (8 sides), and keep adding sides to discover more complex polygons.
Identical and equal size
If the shapes are the same they are congruent. If the shapes are the same but have different sizes they are similar.
Symmetry in geometry
A figure is symmetrical if it can be divided into two equal parts. The line dividing these parts is called the line of symmetry.
Examples of line of symmetry
Square symmetry
<svg width="100" height="100"> <rect width="80" height="80" x="10" y="10" stroke="black" stroke-width="2" fill="none" /> <line x1="50" y1="10" x2="50" y2="90" stroke="red" stroke-width="2"/> </svg>
A square has four lines of symmetry.
Circle symmetry
<svg width="120" height="120"> <circle cx="60" cy="60" r="50" stroke="black" stroke-width="2" fill="none"/> <line x1="60" y1="10" x2="60" y2="110" stroke="red" stroke-width="2"/> </svg>
A circle has infinite symmetry lines.
Perimeter and area
Perimeter
The perimeter is the distance around a shape. To find it, add up the lengths of all sides.
Example of a square, if each side is 4 units:
Perimeter = 4 + 4 + 4 + 4 = 16 units
Area
Area is the space inside a shape. Calculate area differently for different shapes.
Example of a square, if the sides are 4 units:
Area = 4 * 4 = 16 square units
Transformations
Transformations involve changing the position or size of a shape. There are three main types of transformations:
Translation
Moves a shape from one location to another.
Rotation
Rotates a shape around a point without changing its shape.
Reflection
Flips the shape over a line like a mirror image.
Conclusion
Geometry means understanding shapes, lines, angles and how they relate. It is everywhere around us and helps us understand the world better. By learning geometry we not only improve math skills but also enhance problem-solving and critical thinking abilities.
Keep exploring and trying new shapes and concepts in geometry. You will find that it is like unraveling the mysteries of both mathematics and nature.