Question

In: Advanced Math

3. Given the parametric equations x = 3t /1 + t^3 and y = 3t^2 /1...

3. Given the parametric equations x = 3t /1 + t^3 and y = 3t^2 /1 + t^3 . a) Show that the curve produced also satisfies the equation x^3 + y^3 = 3xy. b) Compute the limits of x and y as t approaches −1: i. from the left ii. from the right c) To avoid the issue in part b), graph the curve twice in the same command, once for −5 < t < −1.5 and once for −0.5 < t < 5. d) Repeat part c) using the domains −100 < t < −1.5 and −0.5 < t < 100. In a print command, state how this plot is different from the plot in part c)

Solutions

Expert Solution


%%Matlab code for plotting x and y for various t
clear all
close all

%function for x and y
x=@(t) 3.*t./(1+t.^3);
y=@(t) 3.*t.^2./(1+t.^3);

%all t values
t1=linspace(-5,-1.5);
t2=linspace(-0.5,5);

hold on
plot(x(t1),y(t1))
plot(x(t2),y(t2))

%all t values
t1=linspace(-100,-1.5,1000);
t2=linspace(-0.5,100,1000);

plot(x(t1),y(t1))
plot(x(t2),y(t2))

legend('-5<t<-1.5','-0.5<t<5','-5<t<-1.5','-0.5<t<100','location','best')
xlabel('x')
ylabel('y')
title('x vs. y plot')


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


Related Solutions

A curve c is defined by the parametric equations x= t^2 y= t^3-4t a) The curve...
A curve c is defined by the parametric equations x= t^2 y= t^3-4t a) The curve C has 2 tangent lines at the point (6,0). Find their equations. b) Find the points on C where the tangent line is vertical and where it is horizontal.
Consider the parametric curve given by the equations x = tsin(t) and y = tcos(t) for...
Consider the parametric curve given by the equations x = tsin(t) and y = tcos(t) for 0 ≤ t ≤ 1 Find the slope of a tangent line to this curve when t = 1. Find the arclength of this curve (make sure to do it by integration by parts if you find yourself integrating powers of sec(θ))
Consider the line L with parametric equations x = 5t − 2, y = −t +...
Consider the line L with parametric equations x = 5t − 2, y = −t + 4, z= 2t + 5. Consider the plane P given by the equation x+3y−z=6. Find the distance from L to P .
The cycloid has parametric equations x = a(t + sin t), y = a(1 - cos...
The cycloid has parametric equations x = a(t + sin t), y = a(1 - cos t). Find the length of the arc from t = 0 to t = pi. [ Hint: 1 + cosA = 2 cos2 A/2 ]. and the arc length of a parametric
given the curve x(t)=t^2+3 and y(t)=2t^3-3t^2 find the following: a.) find the derivative of the curve...
given the curve x(t)=t^2+3 and y(t)=2t^3-3t^2 find the following: a.) find the derivative of the curve at t=1 b.) dind the concavity of the curve c.) graph the curve from t=0 to t=2 d.) find the area if the curve on the interval 0<=t<=2
Find the distance between the skew lines with parametric equations x = 1 + t, y...
Find the distance between the skew lines with parametric equations x = 1 + t, y = 3 + 6t, z = 2t, and                  x = 1 + 2s, y = 6 + 15s, z = −2 + 6s. Find the equation of the line that passes through the points on the two lines where the shortest distance is measured.
Consider the curve traced out by the parametric equations: { x = 1 + cos(t) y...
Consider the curve traced out by the parametric equations: { x = 1 + cos(t) y = t + sin(t) for 0 ≤ t ≤ 4π. 1. Show that that dy dx = − 1 + cos(t)/sin(t) = − csc(t) − cot(t). 2. Make a Sign Diagram for dy dx to find the intervals of t over which C is increasing or decreasing. • C is increasing on: • C is decreasing on: 3. Show that d2y/dx2 = − csc2...
Solve the following differential equations: 1.) y"(t)- 6 y'(t)+9 y(t)=6t^2e^(3t) ; y(0)=y'(0)=0 2.)x"(t)+4x(t)=t +4 ; x(0)=1...
Solve the following differential equations: 1.) y"(t)- 6 y'(t)+9 y(t)=6t^2e^(3t) ; y(0)=y'(0)=0 2.)x"(t)+4x(t)=t +4 ; x(0)=1 , x'(0)=0
The parametric equations x = x1 + (x2 − x1)t,    y = y1 + (y2 − y1)t...
The parametric equations x = x1 + (x2 − x1)t,    y = y1 + (y2 − y1)t where 0 ≤ t ≤ 1 describe the line segment that joins the points P1(x1, y1) and P2(x2, y2). Use a graphing device to draw the triangle with vertices A(1, 1), B(4, 3), C(1, 6). Find the parametrization, including endpoints, and sketch to check. (Enter your answers as a comma-separated list of equations. Let x and y be in terms of t.)
Sketch the curve given by the parametric equation x= tan(t) , y=sec (t) for -pi/2 <...
Sketch the curve given by the parametric equation x= tan(t) , y=sec (t) for -pi/2 < t < pi/2. Eliminate the parameter "t" and find the Cartesian form of this curve. What type of curve is this? What curve would be good if "t" belong to the interval (pi/2, 3pi/2)?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT