hi
I have a problem in finding the answers of the equation below, I wanna know if I can the eqaution directly in java and by giving the parameters , get the answer?
(3+5x)/2sqrt[(2-x)(6+x)]-sqrt[(1+x)(3+x)+5(3+x)]/2=n n=0,1,2,...
Printable View
hi
I have a problem in finding the answers of the equation below, I wanna know if I can the eqaution directly in java and by giving the parameters , get the answer?
(3+5x)/2sqrt[(2-x)(6+x)]-sqrt[(1+x)(3+x)+5(3+x)]/2=n n=0,1,2,...
Java is way too stupid for that; you have a function f(x) == n, and given a value for n you want to know the value(s) for x. You basically want to know the inverse of function f w.r.t. x, i.e. x= f^-1(n), but Java can't do that by itself, you either need to write a substantial amount of software for that or use a CAS (Computer Algebra System) for that.
kind regards,
Jos