As part of my attempts to solve integer factorization problem. I came to this equation:
$$\left\lfloor\frac{a}{bc}\right\rfloor=d$$
- $a,b,c,d$ are positive integer values
- $\frac{a}{b}$ is an integer value
I know the values of $a,b,d$; how can I find $c$?
Having $\lfloor\frac{a}{bc}\rfloor=d$ is the same thing as saying:
$$d\leq\frac{a}{bc}<d+1$$
So assuming both $a$ and $b$ are positive, you obtain the following set of solutions for $c$:
$$\frac{a}{b(d+1)}<c\leq\frac{a}{bd}$$