4

If I have this equation:

x+y=27
xy=180

I want to solve it using:

Solve[{x+y==27,xy==180},{x,y}]

However this results in the following errors:

  • Set::write: Tag Plus in x+y is Protected. >>
  • Solve::svars: Equations may not give solutions for all "solve" variables. >>

Why? And how do I fix this?

Tyilo
  • 2,725
  • 9
  • 40
  • 59
  • 2
    This question is about the syntax of Mathematica language and not about the use of the software, so is probably more suitable for [stackoverflow](http://stackoverflow.com/). – Simon Sep 27 '11 at 07:44
  • 1
    There is site for the Mathematica program, it is http://mathematica.stackexchange.com/ – MariusMatutiae Jun 11 '15 at 15:57

1 Answers1

4

If you just run the line

Solve[{x + y == 27, x y == 180}, {x, y}]

then everything runs fine and you find {{x -> 12, y -> 15}, {x -> 15, y -> 12}}.

The error you see is because somewhere you've got a statement like

In[1]:= x + y = 27

During evaluation of In[1]:= Set::write: Tag Plus in x+y is Protected. >>

Out[1]= 27

Where the head of x + y is Plus which is a protected symbol and can't be naively given new definitions. It might be that you have some weird definition hiding somewhere, in which case, it's simplest to restart the kernel and try again.

The moral of the story is that = (Set) is not the same as == (Equal).

Simon
  • 675
  • 4
  • 12