home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / sci / math / symbolic / 2310 < prev    next >
Encoding:
Text File  |  1992-09-03  |  1.1 KB  |  32 lines

  1. Newsgroups: sci.math.symbolic
  2. Path: sparky!uunet!usc!sdd.hp.com!ux1.cso.uiuc.edu!news.cso.uiuc.edu!dan
  3. From: dan@math.uiuc.edu (Daniel R. Grayson)
  4. Subject: Re: mathematica solve and rules
  5. References: <1992Sep3.004655.21678@athena.mit.edu> <BtzEo8.A36@bunyip.cc.uq.oz.au> <1992Sep3.091337.434@cine88.cineca.it>
  6. Message-ID: <Bu02yI.Cpy@news.cso.uiuc.edu>
  7. Sender: usenet@news.cso.uiuc.edu (Net Noise owner)
  8. Reply-To: dan@math.uiuc.edu
  9. Organization: University of Illinois at Urbana
  10. Date: Thu, 3 Sep 1992 11:37:28 GMT
  11. Lines: 19
  12.  
  13. try this:
  14.  
  15. Mathematica (ULTRIX) 1.2 (August 8, 1989) [With pre-loaded data]
  16. by S. Wolfram, D. Grayson, R. Maeder, H. Cejtin,
  17.    S. Omohundro, D. Ballman and J. Keiper
  18. with I. Rivin and D. Withoff
  19. Copyright 1988,1989 Wolfram Research Inc.
  20.  
  21. In[3]:= Solve[ a x^2 == c, x ]
  22.  
  23.                Sqrt[c]           Sqrt[c]
  24. Out[3]= {{x -> -------}, {x -> -(-------)}}
  25.                Sqrt[a]           Sqrt[a]
  26.  
  27. In[4]:= Reduce[ a x^2 == c , x , Mode->Generic]
  28.  
  29.              Sqrt[c]           Sqrt[c]
  30. Out[4]= x == ------- || x == -(-------)
  31.              Sqrt[a]           Sqrt[a]
  32.