how to solve this

1 view (last 30 days)
Praveen
Praveen on 17 Jun 2022
Answered: Voss on 18 Jun 2022
Area A= pi*r^2 where r=pi^1/3-1
  1 Comment
Rik
Rik on 18 Jun 2022
Are you posting homework questions?

Sign in to comment.

Answers (2)

Sam Chak
Sam Chak on 17 Jun 2022
The Area A computed by MATLAB is as correct as the radius r given by you.
r = pi^1/3-1
r = 0.0472
A = pi*r^2
A = 0.0070

Voss
Voss on 18 Jun 2022
r = pi^1/3-1 % == (pi^1)/3 - 1 == pi/3 - 1
r = 0.0472
A = pi*r^2
A = 0.0070
r = pi^(1/3)-1 % pi to the one-third power, minus one
r = 0.4646
A = pi*r^2
A = 0.6781

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!