Question

In: Physics

Question #1. The lateral surface area, S, of a cone is given by: ? = ?*SQRT(?^2...

Question #1.

The lateral surface area, S, of a cone is given by: ? = ?*SQRT(?^2 + ℎ^2) , where r is the radius of the base and h is the height. Determine the radius of a cone that has a surface area of 1200 m2 and a height of 20 m. Solve by using the bisection iteration method. Start with rl = 15 m, ru = 16 m and calculate the first four(4) iterations.

Question #2.

Determine the fourth (4) root of 200 by finding the numerical solution of the equation x4 - 200 = 0. Use False position method. Start with xl = 3, xu = 4 and carry out the first four(4) iterations.

I need a script using Matlab, Thank You.

Solutions

Expert Solution

Question1

clc;

clear;

f = @(r) pi*r*sqrt(r^2+20^2) -1200;

rl=input('Enter the first value of guess interval:');

ru=input('Enter the end value of guess interval:');

while f(ru)*f(rl)>0

fprintf('%d and %d', f(ru),f(rl))

fprintf('The guess is incorrect! Enter new guesses\n');

rl=input('Enter the first value of guess interval:') ;

ru=input('Enter the end value of guess interval:');

end

for i=1:4

rr=(ru+rl)/2;

if f(ru)*f(rr)<0

rl=rr;

else

ru=rr;

end

fprintf('Root after %i interation is: %ff \n',i,rr);

end

fprintf('The required root of the equation is:%f',rr)

Question1

clc;

clear;

f = @(x) x^4-200;

xl=input('Enter the first value of guess interval:');

xu=input('Enter the end value of guess interval:');

while f(xu)*f(xl)>0

fprintf('The guess is incorrect! Enter new guesses\n');

xl=input('Enter the first value of guess interval:') ;

xu=input('Enter the end value of guess interval:');

end

for i=1:4

xr = xu - f(xu)* (xu-xl)/(f(xu)-f(xl));

if f(xu)*f(xr)<0

xl=xr;

else

xu=xr;

end

fprintf('Root after %i interation is: %d \n',i,xr);

end

fprintf('The required root of the equation is:%d',xr)


Related Solutions

The surface area of a right-circular cone of radius r and height h is S=πrr2+h2−−−−−−√, and...
The surface area of a right-circular cone of radius r and height h is S=πrr2+h2−−−−−−√, and its volume is V=1/3πr2h. (a) Determine h and r for the cone with given surface area S=4 and maximal volume V. h=  , r= (b) What is the ratio h/r for a cone with given volume V=4 and minimal surface area S? hr= (c) Does a cone with given volume V and maximal surface area exist? A. yes B. no
Multivariable Calculus: Surface Area and Change of Variables Find the surface area of the surface given...
Multivariable Calculus: Surface Area and Change of Variables Find the surface area of the surface given by z =18−2x−3y over the triangle with vertices: (0,0), (2,3), (4,1). Since this is not a type I or type II region, you will either need to divide the region into two regions or use a change of variables. x=(1/5)(u-2v) and y=(1/10)(3u-v) is a possible change of variables. I will upvote answers!
Finding Surface Area In Exercises 43-46, find the area of the surface given by z =...
Finding Surface Area In Exercises 43-46, find the area of the surface given by z = f(x, y) that lies above the region R. f(x,y)=4-x^2 R: triangle with vertices (-2,2),(0,0),(2,2)
Let S be the cone z = 4 − ( x^2 + y^2)^(1/2) where z ≥...
Let S be the cone z = 4 − ( x^2 + y^2)^(1/2) where z ≥ 0, oriented with downward pointing unit normal vectors. The image below contains S. The grey plane is the xy-plane. Let F~ (x, y, z) = <− z , x − y , x + y >. Use Stokes’ Theorem to evaluate Z Z S ∇ × F~ · dS~.
The given curve is rotated about the y-axis. Find the area of the resulting surface y=1/3x^3/2...
The given curve is rotated about the y-axis. Find the area of the resulting surface y=1/3x^3/2 , 0 < x < 12
Find the surface area of the given surface. Enter an exact answer. Do not use decimal...
Find the surface area of the given surface. Enter an exact answer. Do not use decimal approximations. the portion of the plane 7x + y + 6z = 2 inside the cylinder x2 + y2 = 36
I = ∫sqrt(4x^2+20) dx I = ∫(1)/(x^2*sqrt(x^2-a)) dx
I = ∫sqrt(4x^2+20) dx I = ∫(1)/(x^2*sqrt(x^2-a)) dx
The surface area of a sphere of radius r is S = 4πr2. Its volume is
The surface area of a sphere of radius r is S = 4πr2. Its volume is V = 4πr3/3. a. Use MuPAD to find the expression for dS/dV. b. A spherical balloon expands as air is pumped into it. What is the rate of increase in the balloon’s surface area with volume when its volume is 30 in.3?
Consider a surface S given by A point P on this surface is given by r(0,0,0, 3 (a) Find the norma...
Consider a surface S given by A point P on this surface is given by r(0,0,0, 3 (a) Find the normal curvature of the surface at an arbitrary point (θ,t) in terms of (d, d). (b) Find the principal curvatures of the surface at an arbitrary point (0, t) c)Find two unit tangent vectors to S at P that point in the principal directions. (d) The vector v (-4, 1,3) is tangent to S at P. Find the normal curvature...
find the minimum distance between (-4,1,0) and the surface z= sqrt(1-2x-2y).
find the minimum distance between (-4,1,0) and the surface z= sqrt(1-2x-2y).
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT