I'm trying to model the number of new planes an airline must buy. There are 3 types: small, medium and big. Let $x_i$ be the number of new planes of type $i$ that the airline buys (1=small, 2=medium and 3=big).
One of the restrictions of the problem is that the maintenance crew can only keep 40 small planes. We also know that a medium size plane equals $\frac{4}{3}$ of a small one and that a big one equals $\frac{5}{3}$ of a small plane.
I'm not sure how to write this restriction. I wrote
\begin{equation*} x_1+\frac{3}{4}x_2+\frac{3}{5}x_3 \leq 40 \end{equation*}
but I'm not sure if it is the correct response.