I wish to find ALL the roots of the following equation $ x \tan(ax) - c = 0$ within a range, where a and c are constants I control.
I've been using FindRoot[x*Tan[a*x] - c, {x, 5}], but that obviously gives me only the root closest to 5 (for example).
I wish to store all the roots within a range (say, -10 to 10), within an array, and use it later.
I'm pretty new to Mathematica, and thanks in advance!


