I need to find a value for L
and S
where:
P = 20
L = 2S + P
L + S + 3P = 1160
It's for deciding the column width in a website layout, which can change according the available screen size:
I tried giving L
a random value that sounded about right (700) and then solving S
using the first equation, but then the second simply turned out false, so that didn't work.
(Sorry if this question is too "amateuristic" for this site, but it doesn't look like there's a better SE alternative)