How to not let Mathematica display not enough equations message?

  • Context: Mathematica 
  • Thread starter Thread starter tgt
  • Start date Start date
  • Tags Tags
    Mathematica
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
tgt
Messages
519
Reaction score
2
When the number of equations is less then the number of variables, mathematica displays the 'not enough equations' message. How to not let it display this message as sometimes it is intended to have number of equations less then the number of variables.
 
Physics news on Phys.org
You can surpress the message,
Code:
Off[Solve::svars]
or, which I personally prefer, you can use a function like Reduce which just gives the solution in terms of unknowns.