I'm on my first semester of calculus (again) and were doing optimizations.
I came up with this equation for the area of a swimming pool and 4 decks surrounding the pool:
Code: Select all
Area = 1800
1800 = L*W*H + 10L + 20W
Code: Select all
1800 = L*W*H + 10L + 20W
1800 - 10L - 20W = L*W*H
(1800 - 10L - 20W) / (LW) = H // cool I solved for H
Code: Select all
1800 = L*W*H + 10L + 20W
1800 = L*W( (1800 - 10L - 20W) / (LW) ) + 10L + 20W // Substitute in H
I feel like I am missing something basic from algebra. This doesn't happen every time I use substitution to solve a problem, only some of the time.
Does anyone know what I am doing wrong?
note: I thought the code boxes looked nicer then the Quote boxes, but this is not actual code.