2
$\begingroup$

I have a vector

$\qquad R(t) = (-5t^{2} + 4)\,\hat{i} + (4t - 1)\,\hat{j}$

which can be written

R[t_] := {-5t^2 + 4, 4t - 1} 

in Mathematica. How can I plot that in just one $xy$-plot?

I have searched in Implicit Functions of Mathematica, but I have found nothing that works for my purpose.

$\endgroup$
3
  • $\begingroup$ Look up study and the examples of ParametricPlot and review the syntax of vectors (a.k.a. List) (this guide is one starting point). $\endgroup$ Commented Oct 9, 2018 at 11:46
  • $\begingroup$ BTW, I call your sort of function a parametrized curve, a parametrization, or a vector-valued function of a single variable. An implicit function is something else. $\endgroup$ Commented Oct 9, 2018 at 11:51
  • $\begingroup$ ParametricPlot $\endgroup$ Commented Oct 9, 2018 at 11:53

1 Answer 1

5
$\begingroup$

Does this work for you?

R[t_] := {-5 t^2 + 4, 4 t - 1} ParametricPlot[R[t], {t, 0, 1}] 

plot

$\endgroup$

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.