level 6
衣雪散风
楼主
f = 0.05;
z1 = 0.64;
Solve[f^2/((f^2*z1^2/(z1^2 + (x - f)^2)) + ((z1^2 + (x - f)^2)*(x - f)^2/f^2)) == 69998, x]
虽然能给出结果,但还是会提示:
Solve was unable to solve the system with inexact coefficients. The answer was obtained by solving a corresponding exact system and numericizing the result.
另外,我试了下1/f^2,得到的是一个近似值而不是准确值,这个要怎么解决呢
2022年08月10日 14点08分
1
z1 = 0.64;
Solve[f^2/((f^2*z1^2/(z1^2 + (x - f)^2)) + ((z1^2 + (x - f)^2)*(x - f)^2/f^2)) == 69998, x]
虽然能给出结果,但还是会提示:
Solve was unable to solve the system with inexact coefficients. The answer was obtained by solving a corresponding exact system and numericizing the result.
另外,我试了下1/f^2,得到的是一个近似值而不是准确值,这个要怎么解决呢