Area measures the amount of surface a shape covers. Think of it this way: if you were painting a wall or laying tiles on a floor, the area tells you exactly how much paint or how many tiles you need. While perimeter tells you how far around a shape, area tells you how much space it fills on a flat surface.
A handy way to visualize area is to imagine filling a shape with small unit squares, each measuring 1×1. The total number of unit squares that fit inside the shape, with no gaps and no overlaps, equals its area. This "counting squares" idea is the foundation behind every area formula we will use.
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal
Welcome to Area of 2D Shapes! In your earlier courses you explored the difference between perimeter, area, and volume, and then learned how to calculate boundary lengths around shapes. This lesson focuses on finding the area of rectangles and squares. You will now move from measuring around a shape to measuring the surface it covers. Instead of counting every unit square one by one, you will learn how rectangle and square area formulas make that process faster.
By the end of this lesson, you have learned how to:
Describe area as the amount of flat surface a shape covers.
Calculate the area of rectangles and squares using A=l×w and A=s2.
Write area answers with correct square units, including when dimensions are decimals.
A rectangle has two key measurements: its length (l) and its width (w). Instead of counting every unit square one by one, you can multiply these two dimensions together:
Area of a rectangle=l×w
For example, a rectangle that is 5m long and 3m wide contains 5×3=15 unit squares, so its area is 15m2. Notice how multiplication gives the same answer as counting — just much faster. This shortcut works because each row holds 5 squares, and there are 3 rows, giving 15 squares in total.
A square is simply a rectangle whose length and width are equal. That common measurement is called the side length (s). Because both dimensions are the same, the formula becomes:
Area of a square=s×s=s2
For instance, a square with a side length of 4cm has an area of 42=16cm2. Recognizing that a square is a special case of a rectangle is useful because it means you only need to remember one core idea: multiply the two dimensions together.
Not every measurement comes out to a whole number. Floors, tabletops, and screens often have decimal dimensions, but the good news is that the same formulas apply without any extra steps.
Consider a rectangular phone screen that measures 6.2cm by 13.5cm:
Area=6.2×13.5=83.7cm2
Similarly, a square ceramic tile with a side length of 0.3m has an area of:
0.3×0.3=0.09m2
This answer may look surprising at first because 0.09 is smaller than 0.3, but it makes sense: the tile is less than 1 meter long on each side, so its area should be less than 1m2. To multiply the decimals, think of 0.3×0.3 as 3×3=9, then count the decimal places. Each factor has one decimal place, so the product has two decimal places: 0.09.
A quick estimate can also help you check your work. Since 0.3 is roughly a third of 1, the product 0.3×0.3 should be roughly a ninth of 1. Because 91 is close to 0.11, an answer near 0.1 is reasonable. The exact value, 0.09m2, fits that expectation.
One detail that is easy to overlook is the unit label. Because area counts how many 1×1 unit squares fit inside a shape, the result is always expressed in square units. The squared unit tells the reader that the answer measures surface coverage, not just distance.
For example, if a rectangle is 6m long and 2m wide, its area is:
6m×2m=12m2
The number 12 tells how many square units fit inside the rectangle, and m2 tells what kind of unit squares they are: square meters. Without the squared unit, 12m would describe a length, such as the distance along a line, instead of the amount of flat space covered. Here is a quick reference:
Dimension unit
Area unit
Written as
meters (m)
square meters
m2
centimeters (cm)
square centimeters
cm2
feet (ft)
square feet
ft2
inches (in)
square inches
in2
Writing 12ft instead of 12ft2 would suggest a length rather than an area. Always double-check that your answer carries the squared label so the measurement clearly describes surface coverage.
Even with straightforward formulas, a few pitfalls come up regularly. Keeping these in mind will save you time and prevent errors in the practice tasks ahead.
Mixing up perimeter and area. Perimeter adds side lengths; area multiplies two dimensions. If your answer seems surprisingly small or large, check which operation you used.
Forgetting to square the units. A result like 20m describes a length, not a surface. Make sure you write 20m2.
Using mismatched units. If the length is in meters and the width is in centimeters, convert one before multiplying so both dimensions share the same unit.
Let's recap what you have learned. The area of a rectangle is l×w, and because a square is a rectangle with equal sides, its area simplifies to s2. These formulas work the same way for whole numbers and decimals, and the result must always carry square units to show that you are measuring surface coverage, not length.
Up next, you will put these ideas into action through hands-on practice. You will start by building shapes out of unit squares to see how changing dimensions affects area, then work through guided calculations, and finish by figuring out how much tile is needed to cover a real bathroom floor. Get ready to apply what you have learned!