MATLAB: 25^23 without approximation

approximation

I want to get the answer with no approximation
I do 25^23 without approximation.

Best Answer

Use vpa from symbolic toolbox:
digits(50);
x = vpa(25);
x23 = x^23
Titus
Related Question