Help me. I begin learn Java | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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 Respostas
+ 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