+ 2
Help me. I begin learn Java
f(x)=(ln(x^2+1)+√(x^4+1))/x^2-x+1
2 Réponses
+ 24
f(x)=(ln(x^2+1)+√(x^4+1))/x^2-x+1
y=Math.log(Math.pow(x,2)+1)+Math.sqrt(Math.pow (x,4)+1)/Math.pow(x,2)-x+1
//here.log is with base e , for logs with another base u can use base change formula ☺
+ 1
thank you 😍😍