Enter the length and the width of the rectangle. The area (length × width) is shown, along with the area converted between cm² and m².
Table of Contents
-
What you can do on this page
-
What is this calculation used for?
-
How to Use
-
Formulas and figures
-
Symbols and terms
-
Good to know before you start
-
How to calculate it in Excel
-
How to calculate it in Google Sheets
-
How to calculate it in Python
-
How to write it in LaTeX and other math languages (copy and paste)
-
How to have ChatGPT do the calculation
-
DataChef Features
-
Related Features
-
NumberChef Calculators List
What you can do on this page
- Enter the length and the width, and you get the area of the rectangle (area = length × width) on the spot
- The area is also converted to other units (square feet when you enter inches, square inches when you enter feet). Switch "Units" to Metric to get cm² and m² instead
- Enter the same number for the length and the width, and it works for the area of a square too
- A plain-language explanation of the formulas and copy-and-paste formulas for Excel, Google Sheets and Python are all on this page
What is this calculation used for?
A room 12 ft long and 10 ft wide has a floor area of \(12 \times 10 = 120\,\mathrm{ft^2}\). An 8 × 10 ft rug covers \(8 \times 10 = 80\,\mathrm{ft^2}\), which is two-thirds of the floor.
Compare the area of the room with the areas of rugs, carpets and beds, and you can check with numbers how much of the room they will fill before you buy.
A rectangular lot 100 ft wide and 150 ft deep has an area of \(100 \times 150 = 15000\,\mathrm{ft^2}\). Land is also measured in acres, and 1 acre = 43,560 ft², so \(15000 \div 43560 \approx 0.34\) acre.
Home listings give the living area in square feet, so being able to work out the area helps you compare homes and prices (the price per square foot).
To paint a wall 8 ft high and 12 ft wide, the area is \(8 \times 12 = 96\,\mathrm{ft^2}\), or 192 ft² for two coats. A paint can label gives the area it covers, often about 350 to 400 square feet per gallon for one coat, so you can work out how much to buy before you go to the store.
Wallpaper, flooring, insulation and other materials sold by area all use this calculation. It is the one you need most often to avoid buying too much or too little.
A 4 × 8 ft raised bed has an area of \(4 \times 8 = 32\,\mathrm{ft^2}\). Garden guides and seed packets give spacing such as "4 lettuce plants per square foot", so for the whole bed that is \(32 \times 4 = 128\) plants. Knowing the area tells you how many plants or seeds you need.
Fertilizer and other products are also often given as an amount per square foot (or per 1,000 square feet), so area is the starting point for any growing plan.
Fabric is sold as a rectangle: a fixed width (often 44 inches) cut to the length you ask for, by the yard. If you buy 1.5 yards (54 inches) of 44-inch fabric, the area is \(44 \times 54 = 2376\,\mathrm{in^2}\) (16.5 ft²).
Compare it with the area your pattern pieces need, and you can decide how much to buy before you get to the cutting counter.
Formulas and figures
Symbols and terms
Symbols
| \(S\) | S | A letter often used for area. On this page it is the area of the rectangle (or square). Many US textbooks use \(A\) for area instead, as in \(A = l \times w\); the meaning is the same. |
| \(l\) | l | The length, from the first letter of "length". |
| \(w\) | w | The width, from the first letter of "width". |
| \(l^2\) | l squared | The number \(l\) multiplied by itself (\(l \times l\)). The small raised 2 is an exponent that says "use it as a factor twice". |
| \(\mathrm{in^2}\) | square inch | A unit of area. The area of a square with 1-inch sides is 1 in². It is also written "sq in". |
| \(\mathrm{ft^2}\) | square foot | A unit of area. The area of a square with 1-foot sides is 1 ft² (also written "sq ft"). \(1\,\mathrm{ft^2} = 144\,\mathrm{in^2}\). Room and home sizes in the US are given in square feet. |
Terms
| rectangle | A four-sided shape whose four angles are all right angles. Opposite sides are equal in length. It is the most common shape around us, from notebooks to doors to rooms. |
| square | A four-sided shape with four right angles and four sides of equal length. It is a special rectangle whose length and width are equal. |
| area | How much flat space a shape covers, given as a number. It is measured by how many unit squares (such as 1 in² squares) fit inside. |
| right angle | An angle of 90 degrees, the angle that fits exactly into the corner of a sheet of paper. All four angles of a rectangle are right angles. |
| unit conversion | Writing the same amount in a different unit. For area, the key point is that the area factor is the square of the length factor (1 ft = 12 in, so 1 ft² = 144 in²). |
Good to know before you start
Here is what helps you use the calculation on this page with real understanding, not just by pressing the button.
| Multiplication (Grades 3–4) |
|
| Rectangles and squares (Grades 2–3) |
|
| What area means and its units (Grade 3) |
|
| Multiplying decimals (Grade 5) |
|
How to calculate it in Excel
| Length (in) | 60 |
| Width (in) | 96 |
| Area of the rectangle (in²) | =B1*B2 |
| Side length (in) | 6 |
| Area of the square (in²) | =B1^2 |
| Area in in² | 5760 |
| Area in ft² | =B1/144 |
"B1" and "B2" in a formula mean "use the number in that cell". "*" is multiplication, "/" is division and "^" raises to a power (how many times to multiply).
In the first table, for example, B3 shows 60 × 96 = 5760 (in², since you entered inches). The second table shows 36 in B2, and the third shows 40 in B2. Just replace the input numbers with your own lengths.
How to calculate it in Google Sheets
| Length (in) | 60 |
| Width (in) | 96 |
| Area of the rectangle (in²) | =B1*B2 |
| Side length (in) | 6 |
| Area of the square (in²) | =B1^2 |
| Area in in² | 5760 |
| Area in ft² | =B1/144 |
How to calculate it in Python
length = 60 # length (inches in this example)
width = 96 # width (in the same unit as the length)
area = length * width # area of the rectangle (the input unit squared; in2 in this example)
area_ft2 = area / 144 # when you entered inches, the area in ft2
print(f"Area of the rectangle: {area} in2")
print(f"In square feet: {area_ft2} ft2")
How to write it in LaTeX and other math languages (copy and paste)
S = l × w
S = l \times w
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow>
<mi>S</mi>
<mo>=</mo>
<mi>l</mi>
<mo>×</mo>
<mi>w</mi>
</mrow>
</math>
S = l xx w
l*w
S := l*w;
S = l*w;
S = l × w
S = l²
S = l^{2}
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow>
<mi>S</mi>
<mo>=</mo>
<msup><mi>l</mi><mn>2</mn></msup>
</mrow>
</math>
S = l^2
l^2
S := l^2;
S = l^2;
S = l^2
S[ft²] = S[in²] ÷ 144
S_{\mathrm{ft^2}} = S_{\mathrm{in^2}} \div 144
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow>
<msub><mi>S</mi><mrow><msup><mi mathvariant="normal">ft</mi><mn>2</mn></msup></mrow></msub>
<mo>=</mo>
<msub><mi>S</mi><mrow><msup><mi mathvariant="normal">in</mi><mn>2</mn></msup></mrow></msub>
<mo>÷</mo>
<mn>144</mn>
</mrow>
</math>
S_(ft^2) = S_(in^2) -: 144
sIn2/144
sFt2 := sIn2/144;
s_ft2 = s_in2/144;
S(ft²) = S(in²)/144
How to have ChatGPT do the calculation
You are a math calculation assistant. Do the following calculation by actually running Python code, and base your answer only on the numbers from the execution result (do not answer by mental math or guessing). A rectangle is 60 inches long and 96 inches wide. Find each of the following: 1. The area of this rectangle in square inches (in²) 2. That area converted to square feet (ft²) Show the formulas you used and the numbers from the execution result.
How to Use
-
1Enter your numbersType the numbers you want to calculate with into the input fields
-
2CalculatePress the "Calculate" button
-
3Check the resultThe result appears on the spot. The same page also explains the idea behind the calculation and the formula
DataChef Features
No technical knowledge required.
Intuitive and user-friendly operation.
Can be used without registering personal information.
Automatic file deletion by clicking "download".
and rapid file conversion.
No attribution required.
No need to contact us for commercial use permission.
