Hey I started working on the following problem:
For any real number $x$ let $\lfloor x \rfloor$,denote the greatest integer, which is less than or equal to $x$. Define $q(n) = \lfloor \frac{n}{\lfloor \sqrt{n} \rfloor} \rfloor $ for $n = 1,2,3,...$. Determine all positive integers $n$ for which $q(n)>q(n+1)$.
My attempt:
So I realised that $q(n)$ 'jumps' whenever $n$ moves from a number just below a perfect square to the next perfect square.
This gave me the idea to focus on values of $n$, between $m^2$ and $(m+1)^2$, in order to find out more about the function.
From $m^2 \le n < (m+1)^2$, we can deduce that $\lfloor \sqrt{n} \rfloor = m$. However now I am stuck on how to continue with $q(n) = \lfloor \frac{n}{m} \rfloor$.
It seems to me that the function is increasing, but if yes then wouldn't there be no values for $n$ at all?
Can anyone help me on how to continue please?

You are correct that the function is increasing in the interval $[m^2,(m+1)^2-1]$, so there are no values of $n$ in any interval $[m^2,(m+1)^2-1)$ which satisfies $q(n)>q(n+1)$, for any $m$. This means you only need to check $n=(m+1)^2-1$, for any $m$, because this is where $\lfloor\sqrt{n}\rfloor$ "jumps" when you move from $n$ to $n+1$.
For $n=(m+1)^2-1$, you have $q(n)=\lfloor\frac{m^2+2m}{m}\rfloor$ and $q(n+1)=\lfloor\frac{m^2+2m+1}{m+1}\rfloor$. Can you compare the two?