I can not seem to figure out how to plot my vector function. I define the function like this
alpha = vector([sin(x), cos(x)])
and I can plot a single vector
plot(alpha(x=1))
but can not plot the whole function
plot(alpha(x=x))
#unable to simplify to float approximation
This plots the 2 functions separately
plot([sin(x), cos(x)])