The problem asks me to formulate the following optimization problem, find the first order conditions, solve them and verify second order conditions. So the problem is the following. I have to maximize the volume of a cardboard box, given that the front face, the top and the bottom need to have two pieces each. The constraint on the box is that I have 70 sq ft. of cardboard.
My attempt. Let $x$ denote the width, $z$ the height and $y$ the length.
$$ \begin{align} \operatorname{max}\limits_{x,y,z} & \quad xyz \\ \operatorname{s.t.} & \quad \underbrace{xz+xz}_{\text{front face}} + \underbrace{xy+xy}_{\text{top}} + \underbrace{xy+xy}_{\text{bottom}} \\ & \quad + \underbrace{2zy}_{\text{lateral faces}} + \underbrace{xz}_{\text{back face}} = \, 70. \end{align} $$
My problem: the questions asks to solve (with no mention to software) the first order conditions. With the way I modeled it, I have an intractable system of 4 equations to solve manually. So I think the problem is in the way I modeled it; I was hoping someone could shed a light on that.
Thanks in advance.