(1) Draw the Projections of the curve on the three coordinate
planes. Use these projections to help sketch the curve. (Hint: a
Calculator in parametric mode could help with the first part.)
(2) At what points does the curve
intersect the paraboloid 
1) First let us look x-y plane:
It is clear from the expression for the position vector that,
x=t and y=sin(t)
using matlab(code to get every figure is attached at the end) for the ease of doing , the projection on x-y plane will be:
similarily on y-z plane,
y=sin(t) and z=2cos(t), therefore projection will be:

Same way,on z-x plane z=2cos(t) and x=t :
Therefore the whole plot in 3D
will be:

2) It is clear that
doesnt have y component. Therefore the intersection is happened at
z-x plane. Hence the projection on the x-z plane of these curves
reveals the intersection points.
The projection of the second curve
on z-x plane has the form
.-------------------(1)
Since at intersection,
and
(x and component from the first curve )
---------------------(2)
From (1) and (2),

when x=0 --> z=0 (from (2) or (1)) similarily
when x=1--->z=1
Therefore we uave two intersections, one is at the point (0,0) and second one is at the point(1,1), This is shown in the figure below:

Matlab code to plot figures:
%answer to question(1)
t=0:0.01:2*pi;
x=t;
y=sin(t);
z=2*cos(t);
figure(1)
plot(x,y);
xlabel('x');
ylabel('y');
title('projection on x-y plane');
figure(2)
plot(y,z);
xlabel('y');
ylabel('z');
title('projection on y-z plane');
figure(3)
plot(z,x);
xlabel('z');
ylabel('x');
title('projection on z-x plane');
figure(4);
syms t
xt = t;
yt = sin(t);
zt = 2*cos(t);
fplot3(xt,yt,zt);
%Answer to 2nd question
figure(5)
t1=-4:0.01:4;%new variable for time
x1=t1;
z1=t1.^2;%equivalent to z=x^2
plot(z1,x1);
hold on
z1=2.*t1-t1.^2;
plot(z1,x1);
hold off
xlabel('z');
ylabel('x');
title('graph to find intersection of the two curves');
Find and sketch the projections of the curve on the three coordinate planes. r(t) = (sin(t), t, 2cos(t))
please show complete work
25) Use a triple integral in the coordinate system of your choice to find the volume of the solid in the first octant bounded by the three planes y =0 z 0, and z 1-x x y2. Include a sketch of the solid as well as appropriate projection and an Hint: for rectangular coordinates, use dV might not be given in the exam dz dy dx. This hint
25) Use a triple integral in the coordinate...
1.) Define a nonlinear parametric curve in R, finite in length, and passing through the coordinate (2, y) = (-2,5). State the value of t where (x,y) = (-2,5), state the values of the parameter over which this curve is defined, and sketch the curve over these values of the parameter.
Three very large parallel non-conducting planes (infinte planes) have surface charge densities of ?, −? and – 3? (? > 0). Planes are distance ? apart from each other. The origin of the coordinate system was set on the first plane as shown in the figure. Planes are perpendicular to z axis. Point A is 1/2 ? away from the origin while point B and P are 2 ? and 4 ? away from the origin respectively. a) Use Gauss’s...
Question 11 A solid in the first octant, bounded by the coordinate planes, the plane (x= a) and the curve (z=1-y). Find the volume of the solid by using : #-Double integration technique (Use order dy dx) a=51 b-Triple integration technique (Use order dz dy dx) ..
Three very large parallel non-conducting planes (infinte planes) have surface charge densities of sigma,-sigma a and -3sigma (sigma > 0). Planes are distance d apart from each other. The origin of the coordinate system was set on the first plane as shown in the figure. Planes are perpendicular to z axis. Point A is 1/2 d away from the origin while point B and P are 2 d and 4 d away from the origin respectively. a) Use Gauss's law,...
Planes The following set of three linear algebraic equations (3) – (5) represents three planes in an X-Y-Z coordinate system. Visualize the three planes in MATLAB. Find the intersection of the three planes by manual Gauss elimination and indicate the solution with the three planes. Find the intersection programmatically using Ax = b to validate your answer. I need help plotting the planes nothing seems to work when i do this A=[1 1 1; 2 3 1; 3 2 1...
Question 12 Find parametric equations for the line of intersection of the planes - 2y+z= 1 and 2x + y - 3x = -3. Does the line L intersect the plane 2x - y - 3x = 1? If so, at what point? Note: This is the review exercise at the end of Lecture 2.
AME: 2. (24pts) Consider the curve given in polar coordinates by r-12 cos(0) Vsin(0), (0 0 < #). (i) Make a table of the values of the function f(0)--12 cos(0)/sin(0) /6 /4 n/3 5m/12 m/2 7m/12 2n/3 3n/4 5n/6 11 m/12 f(0) are to be rounded to two decimal places. (Hint. Given on 0, r); all the values f(0) an angle 9, enter the value of 0 to the variable C of your calculator, and then evaluate /(0) using the...
4. Tired from the long week, with the amusement park and the wok and dinner plate designs, you retreat to be in peace and study parametric equations. A curious leaflike curve called the "folium of Descartes" catches your eye; it is defined by the parametric equations 3t 3t2 (a) (4 points) Show that if the point (a, b) lies on the curve, then so does (b, a); that is, the curve is symmetric with respect to the line y a....