how to solve this
Show older comments
Answers (2)
The Area A computed by MATLAB is as correct as the radius r given by you.
r = pi^1/3-1
A = pi*r^2
r = pi^1/3-1 % == (pi^1)/3 - 1 == pi/3 - 1
A = pi*r^2
r = pi^(1/3)-1 % pi to the one-third power, minus one
A = pi*r^2
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!