If I construct a large rectangle from a certain number of smaller rectangles- x across and y down i.e. total number of rectangles is xy-, now if I was to construct a border around this large rectangle using the same number of smaller rectangles. How many smaller rectangles did I use?
I've got the relationship xy = 2x + 2y + 4, but I am struggling to find the other relationship.
Any help will be much appreciated, thank you.
For A is the total area inclusive the border your total area will be:
A = (x + 2) * (y + 2)
A = xy + 2x + 2y + 4
Edit:
If you would like to know the relationship between x and y for the function $xy = 2x + 2y + 4$ you need to separate one of the variables:
$xy - 2y = 2x + 4$
$y(x -2) = 2x + 4$
$y = \frac{2x + 4}{x - 2} \;\text{for} \; x>2$