Hi guy,
I am new to Java and working on converting these two formulas to Math.pow. I do not think what I did is right. I would really appreciate your comment.
1- z equal ((x^(2)*5y)^(24))/(\sqrt(y))
I tried Mat.pow (x,2) * (5*y) *24 / Math.pow (y * 0.5)
2- z equal ((x^(2)*5y)^(24))/(xy)
I tried ((Math.pow (x,2) * 5 * y), 24 ) /(x*y)