Help me. I begin learn Java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Help me. I begin learn Java

f(x)=(ln(x^2+1)+√(x^4+1))/x^2-x+1

20th Jan 2018, 4:18 AM
Ken Jo
Ken Jo - avatar
2 Answers
+ 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 ☺
20th Jan 2018, 4:28 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 1
thank you 😍😍
20th Jan 2018, 5:32 AM
Ken Jo
Ken Jo - avatar