I have two equations like these. I want to create a for loop that gives to me all intersection points of the two equations. How can I do that?
Plot[{x*BesselJ[1, x]*BesselK[0, Sqrt[
22.295^2 - x^2]]/(BesselJ[0, x]*
BesselK[1, Sqrt[22.295^2 - x^2]]), Sqrt[22.295^2 - x^2]}, {x, 0,
23}]

findAllRootsdescribed in this answer does the job in OP problem. – Pinti Apr 18 '17 at 08:02BesselJZeroto generate starting points forFindRoot. – LouisB Apr 18 '17 at 08:52