Please answer to these questions...
Please give an equivalent answer. If you don't know the answer then please do not answer... No worthless answers expected nor required... please answer fast...
Attachments:
Answers
Answered by
2
Java expression for the following Expression:-
- Math.sqrt(a+b)
- 1/3*Math.pow(a, 3) +1/4*Math.pow(b, 3)
- s=u*t+1/2*f*Math.pow(t, 2) ;
- d=Math.sqrt(Math.pow(l, 2) +Math.pow(b, 2) ;
- (-b+Math.sqrt(Math.pow(b, 2)- (4*a)))/(2*a) ;
- (Math.pow(a,3) +Math.pow(b,3))/(Math.pow(a,3)-Math.pow(b,3))
- Math.abs((a-b) /(a+b) )
- 3*Math.sqrt((a+b) /(a*b) )
- Math.cbrt((5*Math.pow(x, 2)) +y) / Math.pow((x+11*Math.pow(y, 3)), 1/4.0)
- (x+y) /(Math.sqrt(Math.abs(x-y)))
----------------------------------------
Note:-
- Math.sqrt() is used for finding square root
- Math.pow() is used for a number rased to power x {(n}^{2)}
- Math.sqrt() for finding square root
- Math.cbrt() for finding cube root
- Math.abs() for finding absolute value of a number
-----------------------------------------
More Math functions:-
- Math.min()
- Math.max()
- Math.exp()
- Math.ceil()
- Math.floor()
- Math.rint().... etc.
Similar questions