how to solve this

Area A= pi*r^2 where r=pi^1/3-1

1 comentario

Rik
Rik el 18 de Jun. de 2022
Are you posting homework questions?

Iniciar sesión para comentar.

Respuestas (2)

Sam Chak
Sam Chak el 17 de Jun. de 2022

0 votos

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 el 18 de Jun. de 2022

0 votos

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

Categorías

Etiquetas

Preguntada:

el 17 de Jun. de 2022

Respondida:

el 18 de Jun. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by