Question

In: Advanced Math

Given the parametrized curve r(u) = a cos u(1 − cos u)ˆi + a sin u(1...

Given the parametrized curve r(u) = a cos u(1 − cos u)ˆi + a sin u(1 − cos u)ˆj, u ∈ [0, 2π [ , (with a being a constant)

i) Sketch the curve (e.g. by constructing a table of values or some other method)

ii) Find the tangent vector r 0 (u). What is the tangent vector at u = 0? And at u = 2π? Explain your result.

iii) Is the curve regularly parametrized? Motivate your answer using the definition.

iv) Compute the length of the arc corresponding to the interval [0, π/2].

Solutions

Expert Solution


%%Matlab code for plotting parametric curve
clear all
close all
%function for r(u)
rx=@(u,a) (a.*cos(u)).*(1-(cos(u)));
ry=@(u,a) (a.*sin(u)).*(1-(cos(u)));
%let us consider a=5;
tt=linspace(0,2*pi,25);
%printing rx and ry data for a=5;
fprintf('\tPrinting ux and uy data for a=5\n')
rxx=rx(tt,5); ryy=ry(tt,5);
r=[rxx' ryy'];
disp(r)
tt=linspace(0,2*pi,250);
plot(rx(tt,5),ry(tt,5))
xlabel('x')
ylabel('y')
title('plot for r(u) for a=5');
box on

%tangent equation
syms a u
r1x(u,a) = (a.*cos(u)).*(1-(cos(u)));
r1y(u,a) = (a.*sin(u)).*(1-(cos(u)));
tang(u,a)=diff(ry,u)/diff(rx,u);
fprintf('Equation for tangent line at u=0 is')
y=@(x) ry(0.001,5)+double(tang(0.001,5))*(x-rx(0.001,5));
disp(y)
xx=linspace(-4,2);
yy=y(xx);
hold on
plot(xx,yy)
ylim([-8 8])

fprintf('Equation for tangent line at u=0 is')
y=@(x) ry(2*pi+0.001,5)+double(tang(2*pi+0.001,5))*(x-rx(2*pi+0.001,5));
disp(y)
xx=linspace(-4,2);
yy=y(xx);
hold on
plot(xx,yy)
ylim([-8 8])
intg=@(u)sqrt((5.*cos(u).*sin(u) + 5.*sin(u).*(cos(u) - 1)).^2+(5.*sin(u).^2 - 5.*cos(u).*(cos(u) - 1)).^2);
leng=integral(intg,0,2*pi);
fprintf('Length of the curve is %f\n',leng)

%%%%%%%%%%%%%%% End of Code %%%%%%%%%%%%%%


Related Solutions

For this parametrized curve: x = e^(2t) sin t , y = cos(4t) find tangent line...
For this parametrized curve: x = e^(2t) sin t , y = cos(4t) find tangent line to curve when t=1
If u(t) = < sin(8t), cos(4t), t > and v(t) = < t, cos(4t), sin(8t) >,...
If u(t) = < sin(8t), cos(4t), t > and v(t) = < t, cos(4t), sin(8t) >, use the formula below to find the given derivative. d/(dt)[u(t)* v(t)] = u'(t)* v(t) + u(t)*  v'(t) d/(dt)[u(t) x v(t)] = <.______ , _________ , _______>
If u(t) = < sin(5t), cos(5t), t > and v(t) = < t, cos(5t), sin(5t) >,...
If u(t) = < sin(5t), cos(5t), t > and v(t) = < t, cos(5t), sin(5t) >, use the formula below to find the given derivative. d/dt[ u(t) * v(t)] = u'(t) * v(t) + u(t)* v'(t) d/dt [ u(t) x v(t)] = ?
Given r(t) = <2 cos(t), 2 sin(t), 2t>. • What is the arc length of r(t)...
Given r(t) = <2 cos(t), 2 sin(t), 2t>. • What is the arc length of r(t) from t = 0 to t = 5. SET UP integral but DO NOT evaluate • What is the curvature κ(t)?
Using Matlab, Write a script that validates the relationship between sin u, cos u, and tan...
Using Matlab, Write a script that validates the relationship between sin u, cos u, and tan u by evaluating these functions at suitably chosen values. Please screenshot Matlab screen. Thank you!
1) find the are of the region that lies inside of the curve r= 1+ cos...
1) find the are of the region that lies inside of the curve r= 1+ cos theta and outside the curve r=3 cos theta. 2) find the sum" En=1 3^{1-n}:2^{n+2} 3) find integration ( 2x^2 +1) e^x^2 dx 4) Does: E n=12 ((2n)!/(n!)^2) converge or diverge ? justify your answer ( what test?)
Show that in 2D, the general orthogonal transformation as matrix A given by {{cos, sin}, {-sin,...
Show that in 2D, the general orthogonal transformation as matrix A given by {{cos, sin}, {-sin, cos}}. Verify that det[A] = 1 and that the transpose of A equals its inverse. Let Tij be a tensor in this space. Write down in full the transformation equations for all its components and deduce that Tii is an invariant.
a. (5 Marks) 1 1 cos(x)cos(y) = -cos(x-y) + -cos(x + y) 1 l sin(x)sin(y) =...
a. 1 1 cos(x)cos(y) = -cos(x-y) + -cos(x + y) 1 l sin(x)sin(y) = -cos(x-y)--cos(x+ y) 1 l sin(x)cos(y) =—sin(x-y) +-sin(x + y) A DSB-FC (double sideband-full carrier) signal s(t) is given by, s(t) = n cos(2rr/cf)+ cos(2«-/mt)cos(2«-fct) What is the numeric value for the AM index of modulation, m, fors(f) ?
Problem 13.2: Where on the parametrized surface ~r(u; v) = [1 + u3,v2,uv]T is the temperature...
Problem 13.2: Where on the parametrized surface ~r(u; v) = [1 + u3,v2,uv]T is the temperature T(x, y, z) = 2 + x + 12y - 12z minimal? To nd the minimum, look where the function f(u; v) = T(~r(u, v)) has an extremum. Find all local maxima, local minima or saddle points of f.
What is the area inside the polar curve r = 1 , but outside the polar curve r = 2 cos θ ?
What is the area inside the polar curve r=1, but outside the polar curve r=2cosθ?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT