I got a little trouble solving equations that involve floor function in an efficient way.
For example :
$$ \left\lfloor\frac{x+3}{2}\right\rfloor = \frac{4x+5}{3} $$
In the one above, I get that you basically let $$ \frac{4x+5}{3} = k $$ and then inserting $k$ in the left side, take $k = 8l, 8l+1$, and so on and test it.
If there's a better solution to the one above plese tell me.
My main problem is when it comes down to functions that have multiple floors such as :
$$ \left\lfloor \frac{x+1}{3}\right\rfloor + \left\lfloor\frac{2x+5}{6}\right\rfloor = \frac{3x-5}{2} $$
Using the same method for each of them and then intersecting the solutions should give me the right answer but is there a faster way to solve equations like this ?
As the left hand side is integer, so should be $\dfrac{3x-5}2\iff2|3(x-1)\iff2|(x-1)\implies x$ is odd (assuming $x$ to be an integer)
Again as lcm$(3,6)$ we need to test for $x\equiv0,1,2,3,4,5\pmod6$
But as $x$ is odd, $x\equiv1,3,5\pmod6$
If $x=6b+1$
$$\left\lfloor\frac{x+1}{3}\right\rfloor + \left\lfloor\frac{2x+5}{6}\right\rfloor=\left\lfloor\frac{6b+1+1}{3}\right\rfloor + \left\lfloor\frac{2(6b+1)+5}{6}\right\rfloor=2b+(2b+1)=4b+1$$
and $$\dfrac{3x-5}2=\dfrac{3(6b+1)-5}2=9b-1$$
and so on
If $x$ is not necessarily an integer, $\dfrac{3x-5}2+I\iff x=\dfrac{5+2I}3$
Check for $I\equiv0,1,2\pmod3$