Streamlines of a Vector Field
F[x_,y_]:={x^2,2y}
vf=PlotVectorField[F[x,y],{x,-2,2},{y,-2,2},VectorHeads->True];
stream[t_,c_]:={t,c Exp[-2/t]}
sp=ParametricPlot[{stream[t,.3],stream[-t,.3]},{t,.9,2},
PlotStyle->{RGBColor[1,0,0]}];
Show[sp,vf];
How do you find streamlines? Solve differential equations: find the curve given
a point and the tangent.
If (x(t), y(t)) is a streamline, then (x'(t), y'(t)) is tangent to the curve,
but so is F. This implies
(x'(t), y'(t))=k(f1,f2). If you are given a point, these initial value problems
can be solved (maybe!)
In the example above,
x'(t)=kx^2
y'(t)=2ky
Combining yields
dy/dx=2y/x^2
and separation of variables yields
dy/2y=x^(-2)dx.
Now you should see where the streamline comes from.
Up to Vector Fields