Approximate a nonlinear DE for use in 3D graph

I need to plot [cos(v)*x(t), sin(v)*x(t), v] where x(t) is the solution to

diff(x(t),t)=sqrt(1/(-x(t)^2+1)-1)

I can use DEplot to show me an approximation of x(t), which is what I want, but I need to graph the afformentioned 3d plot. I am not having success with DEPlot3D, because I can't figure out how to plot it with the cosine and sine functions shown above. I would appreciate any help.

sorry; did some research and

sorry; did some research and found my answer:

sol1 := dsolve([diff(x(t), t) = (1/(-x(t)^2+1)-1)^(1/2), x(0) = .5], numeric, output = operator, range = 0 .. .5)

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}