Eliminate a component of an equation

์กฐํšŒ ์ˆ˜: 3 (์ตœ๊ทผ 30์ผ)
MR JUSTIN ACHARJEE Sumanta
MR JUSTIN ACHARJEE Sumanta 2021๋…„ 12์›” 8์ผ
๋Œ“๊ธ€: Walter Roberson 2021๋…„ 12์›” 8์ผ
%% Q9a
clear;clc;
%1
r=0.1:0.01:100;%m
V=1/3*pi.*power(r,2)*h;%m^3
B=sqrt((r^2)+(h^2));
A=r*pi*B;%m^2
By eliminating โ„Ž, obtain the expression for ๐ด as a function of ๐‘Ÿ and V.
How should I do that?

๋‹ต๋ณ€ (1๊ฐœ)

Walter Roberson
Walter Roberson 2021๋…„ 12์›” 8์ผ
V=1/3*pi.*power(r,2)*h;%m^3
If V = something*h then it follows that h = V/something
B=sqrt((r^2)+(h^2));
And that definition for h can be put into B
  ๋Œ“๊ธ€ ์ˆ˜: 2
MR JUSTIN ACHARJEE Sumanta
MR JUSTIN ACHARJEE Sumanta 2021๋…„ 12์›” 8์ผ
hHow should I eliminate h and make an expression for A as a function of ๐‘Ÿ and V?
Walter Roberson
Walter Roberson 2021๋…„ 12์›” 8์ผ
Write out the steps by hand, using unresolved symbols. Find the formula, and program the formula in, possibly using vector r values at that time.
If you want to have MATLAB do it, you can use the Symbolic Toolbox --- but it is really straight forward.
B=sqrt((r^2)+(h^2));
implies
B=sqrt((r^2)+((V/(1/3*pi.*power(r,2)))^2));

๋Œ“๊ธ€์„ ๋‹ฌ๋ ค๋ฉด ๋กœ๊ทธ์ธํ•˜์‹ญ์‹œ์˜ค.

์นดํ…Œ๊ณ ๋ฆฌ

Help Center ๋ฐ File Exchange์—์„œ Calculus์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ

ํƒœ๊ทธ

Community Treasure Hunt

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

Start Hunting!

Translated by