Solve $\left\lceil5n\right\rceil + 30n \geq 250$ for $n$ (Show the lowest possible value) $0\leq n \leq 10$
Can someone help me with this? I wrote a script in python and I discovered that the lowest value was $\frac{107}{15}$, but I still don't know how to solve this problem using only maths.
It is confusing to use $n$ for what is apparently not an integer.
Prefer $x$ in this case.
So let $y=5x$ and the equation is $\lceil y\rceil+6y\ge 250$
The equation becomes $\quad 7y\ge 250\iff y\ge 36\iff x\ge 7.2 $
The equation becomes $\quad n+1+6(n+r)\ge 250\iff 7n+6r\ge 249\iff \begin{cases} n\ge 35\\ 6r\ge249-7\times 35=4\end{cases}$ or $\begin{cases}n\ge 36\\r\ge 0\end{cases}$.
That is $y\ge 35+\frac 23\iff x\ge 7+\frac 2{15}=\frac{107}{15}\ $ or $y\ge 36$
The minimum value between $7.2$ and $\frac {107}{15}$ being the lattest, then this is the solution for the problem.