home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / sci / math / symbolic / 3531 < prev    next >
Encoding:
Text File  |  1993-01-27  |  1.4 KB  |  34 lines

  1. Newsgroups: sci.math.symbolic
  2. Path: sparky!uunet!mcsun!Germany.EU.net!news.netmbx.de!mailgzrz.TU-Berlin.DE!math.fu-berlin.de!ira.uka.de!yale.edu!spool.mu.edu!agate!linus!linus.mitre.org!mwvm.mitre.org!M18117
  3. From: M18117@mwvm.mitre.org
  4. Subject: Re: Non-linear Systems of Equations
  5. Message-ID: <16B6298C4.M18117@mwvm.mitre.org>
  6. Sender: news@linus.mitre.org (News Service)
  7. Nntp-Posting-Host: mwvm.mitre.org
  8. Organization: The MITRE Corporation, McLean VA 22102
  9. References:  <fck=A6@engin.umich.edu>
  10. Date: Tue, 26 Jan 1993 15:51:37 GMT
  11. Lines: 21
  12.  
  13. In article <fck=A6@engin.umich.edu>
  14. Shawn D. Way <shiva@engin.umich.edu> writes:
  15.  
  16. >
  17. >        I am trying top solve systems of Non-Linear algebra equations with
  18. >Mathematica for Windows. The regular Solve[] command or the NSolve
  19. >command will not work. How do you go about this?
  20.  
  21. The Mathematica commands Solve[], NSolve[], and FindRoot[] can all be used to
  22. solve systems of nonlinear equations.  The breakdown is as follows:
  23. Solve[] - attempts to find symbolic solutions
  24. NSolve[] - Finds numerical solutions to polynomial equations
  25. FindRoot[] - Finds numerical solutions to general equations
  26.  
  27. FindRoot[] uses a simple Newton's method, and may or may not work well in a
  28. particular case.
  29.  
  30. The problem is that the normal convention for Mathematica was not used here.
  31. Usually, the function beginning with N is a numerical version of the
  32. symbolic function that does not begin with N.  This convention was not
  33. followed in this case.
  34.