New in Wolfram Mathematica 7: Transcendental Roots  previous | next 
Find All Stationary Points for a Vector Field
Find all the stationary points for the dynamic system z(t)z(t)+sin(z(t)4).
In[1]:=

Click for copyable input
roots = Reduce[

   Sin[z^4] + z == 0 && -2 <= Re[z] <= 2 && -2 <= Im[z] <= 2, z];
In[2]:=

Click for copyable input
roots[[1 ;; 3]]
Out[2]=

In[3]:=

Click for copyable input
Show[StreamPlot[{Re[Sin[(x + I y)^4] + (x + I y)], 

   Im[Sin[(x + I y)^4] + (x + I y)]}, {x, -2, 2}, {y, -2, 2}], 

 ListPlot[{Re[z], Im[z]} /. {ToRules[roots]}, 

  PlotStyle -> Directive[PointSize[Medium], Red]]]
Out[3]=