What is the area of the square?
The area is the length times the width.
The length is S
UNIT_TEXT and
the width is S
UNIT_TEXT, so the
area is S\timesS
square plural_form(UNIT_TEXT, S * S).
The length is S
plural_form(UNIT_TEXT, S) and
the width is S
plural_form(UNIT_TEXT, S), so the
area is S\timesS
square plural_form(UNIT_TEXT, S * S).
\qquad\text{AREA} = S \times S = S*S
We can also count S * S
square plural_form(UNIT_TEXT, S * S).
What is the area of the rectangle?
The area is the length times the width.
The length is L
UNIT_TEXT.
The length is L
plural_form(UNIT_TEXT, L).
The width is W
UNIT_TEXT.
The width is W
plural_form(UNIT_TEXT, W).
Thus the area is
L\timesW
square plural_form(UNIT_TEXT, L * W).
\qquad\text{AREA} = L \times W
= L * W
We can also count L * W
square plural_form(UNIT_TEXT, L * W).