I have come to a problem that simply states that we have a parametric curve $$\vec r(t) = (2\sin t, 3\cos t), \ \ t\in \mathbb R$$
and asks that we find $\vec v(t), \ v(t), \ \vec a(t), \ a(t)$.
What do these represent, and how do I find them? (You don't need to use my example; any example will be appreciated.)
The notation $\vec{r}(t)$ is very common to denote the position of a particle as a function of time. For example, $\vec{r}(t) = (\cos t, \sin t)$ with $t\in [0,2\pi]$ describes a particle moving counter-clockwise around the unit circle (you can check this with a parametric graph, or noting that the magnitude of $\vec{r}(t)$ (which is the particle's distance from the origin), is $$\|\vec{r}(t)\|= \sqrt{\cos^2t+\sin^2t}=1.$$ Noting that the particle is always the same distance from the origin but is only ever at the same point at $t=0$ and $t=2\pi$ should make the fact that its path is circular clear. This gives us a decent intuition behind the other symbols:
With our example, $\vec{v}(t) = (-\sin t, \cos t)$ and $v(t) = \|\vec{v}(t)\| = 1$ (in other words, the speed is constant). The acceleration vector is found using a similar computation, and we have $a(t)$ constant as well.
EDIT: Made it more clear what it means to differentiate vector-valued functions.