Question

Using MatLab 2. Given the parametric equations x = t^3 - 3t, y = t^2-3: (a)...

Using MatLab

2. Given the parametric equations x = t^3 - 3t, y = t^2-3:

(a) Find the points where the tangent line is horizontal or vertical (indicate which in a text line)

(b) Plot the curve parametrized by these equations to confirm.

(c) Note that the curve crosses itself at the origin. Find the equation of both tangent lines.

(d) Find the length of the loop in the graph and the area enclosed by the loop.

3. Use what you learned about vector functions and parametrized curves to make a smile emoji! The emoji consists of the following:

(a) FACE: circle of radius 2, centered at the origin.

(b) EYES: circles of radius 0.1 centered at (?1, 1) and (1, 1)

(c) SMILE: bottom half of a semicircle from (?1, 0) to (1, 0)

Homework Answers

Answer #1

2

Script

clear all

close all

clc

syms t

x=t.^3-3*t;

y=t.^2-3;

a=diff(x);

b=diff(y);

equ1= a == 0;

equ2= b== 0;

solx1=solve(equ1,t);

solx2=solve(equ2,t);

pver=[subs(x,t,solx1) subs(y,t,solx1)]; % tangent line is vertical at (2,-2) and (-2,-2)

phor=[subs(x,t,solx2) subs(y,t,solx2)]; % tangent line is horizontal at (0,-3)

x1=subs(x,t,-3:0.1:3);

y1=subs(y,t,-3:0.1:3);

plot(x1,y1)

hold on

scatter(pver(:,1),pver(:,2))

scatter(phor(:,1),phor(:,2))

g=-20:20;

hort=-3;

plot(g,hort*ones(size(g)),'*r')

vert=[2 -2];

h=-3:6;

plot(vert(1)*ones(size(h)),h)

plot(vert(2)*ones(size(h)),h)

Result

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Consider the parametric curve defined by x = 3t − t^3 , y = 3t^2 ....
Consider the parametric curve defined by x = 3t − t^3 , y = 3t^2 . (a) Find dy/dx in terms of t. (b) Write the equations of the horizontal tangent lines to the curve (c) Write the equations of the vertical tangent lines to the curve. (d) Using the results in (a), (b) and (c), sketch the curve for −2 ≤ t ≤ 2.
Consider the parametric curve given by the equations: x = tsin(t) and y = t cos(t)...
Consider the parametric curve given by the equations: x = tsin(t) and y = t cos(t) for 0 ≤ t ≤ 1 (a) Find the slope of a tangent line to this curve when t = 1. (b) Find the arclength of this curve
Given the parametric equations: x(t) = ?^2 − ? + 2, ?(?) = ?^3 − 3?...
Given the parametric equations: x(t) = ?^2 − ? + 2, ?(?) = ?^3 − 3? A. Find the slope when t = 0. B. Find the tangent equation when t = 0. C. Find the concavity when t =0
4) Consider the polar curve r=e2theta a) Find the parametric equations x = f(θ), y =...
4) Consider the polar curve r=e2theta a) Find the parametric equations x = f(θ), y = g(θ) for this curve. b) Find the slope of the line tangent to this curve when θ=π. 6) a)Suppose r(t) = < cos(3t), sin(3t),4t >. Find the equation of the tangent line to r(t) at the point (-1, 0, 4pi). b) Find a vector orthogonal to the plane through the points P (1, 1, 1), Q(2, 0, 3), and R(1, 1, 2) and the...
2. Rotate the semicircle of radius 2 given by y = √(4 − x^2) about the...
2. Rotate the semicircle of radius 2 given by y = √(4 − x^2) about the x-axis to generate a sphere of radius 2, and use this to calculate the surface area of the sphere. 3. Consider the curve given by parametric equations x = 2 sin(t), y = 2 cos(t). a. Find dy/dx b. Find the arclength of the curve for 0 ≤ θ ≤ 2π. 4. a. Sketch one loop of the curve r = sin(2θ) and find...
On the parametric curve (x(t), y(t)) = (t − t^2 , t^2 + 3t) pictured below,...
On the parametric curve (x(t), y(t)) = (t − t^2 , t^2 + 3t) pictured below, determine the (x, y)-coordinates of the marked point where the tangent line is horizontal.
Consider the parametric curve C defined by the parametric equations x = 3cos(t)sin(t) and y =...
Consider the parametric curve C defined by the parametric equations x = 3cos(t)sin(t) and y = 3sin(t). Find the expression which represents the tangent of line C. Write the equation of the line that is tangent to C at t = π/ 3.
Consider the parametric equations x = 5 - t^2 , y = t^3 - 48t a....
Consider the parametric equations x = 5 - t^2 , y = t^3 - 48t a. Find dy dx and d 2y dx2 , and determine for what values of t is the curve concave up, and when is it concave down. b. Find where is the tangent line horizontal, and where is it vertical.
Consider the parametric curve x = t2, y = t3 + 3t, −∞ < t <...
Consider the parametric curve x = t2, y = t3 + 3t, −∞ < t < ∞. (a) Find all of the points where the tangent line is vertical. (b) Find d2y/dx2 at the point (1, 4). (c) Set up an integral for the area under the curve from t = −2 to t = −1. (d) Set up an integral for the length of the curve from t=−1 to t=1.
Find the derivative of the parametric curve x=2t-3t2, y=cos(3t) for 0 ≤ ? ≤ 2?. Find...
Find the derivative of the parametric curve x=2t-3t2, y=cos(3t) for 0 ≤ ? ≤ 2?. Find the values for t where the tangent lines are horizontal on the parametric curve. For the horizontal tangent lines, you do not need to find the (x,y) pairs for these values of t. Find the values for t where the tangent lines are vertical on the parametric curve. For these values of t find the coordinates of the points on the parametric curve.