Question 639958
<pre>
We start with an x cm by x cm square

{{{drawing(400,5600/19,-1,18,-1,13,
locate(4.5,0,x),locate(-.4,4.5,x),
rectangle(0,0,9,9) )}}}

Then we extend it by 8 cm horizontally and 3 cm vertically, and
have this:

{{{drawing(400,5600/19,-1,18,-1,13,
locate(4.5,0,x),green(line(9,0,17,0),line(17,0,17,12),line(17,12,0,12),
line(0,12,0,9), locate(13,0,8),locate(-.5,10.7,3)), locate(-.4,4.5,x),
rectangle(0,0,9,9) )}}}

So the length of the extended rectangle is x+8 and the width is x+3

     Area = (length)(width)
      204 = (x+8)(x+3)
      204 = x²+3x+8x+24
      204 = x²+11x+24
Get 0 on the left
        0 = x²+11x-180
        0 = (x-9)(x+20)
Use zero factor property:
           x-9=0  x+20=0
             x=9     x=-20

Discard the negative answer.

Each side of the original square is 9 cm.

So the area of the original square is

     Area = (length)(width)
     Area = (9)(9)
     Area = 81 sq.cm.

Edwin</pre>