Group Abstract Group Abstract

Message Boards Message Boards

0
|
4.6K Views
|
4 Replies
|
2 Total Likes
View groups...
Share
Share this post:

How to multiply an equation by a factor

Posted 2 years ago

Eg.

a*x + b*y + c*z==0,  1/a* (a*x + b*y + c*z)==0, x + b/a*y + c/a*z==0
POSTED BY: Jacques Ou
4 Replies
Posted 2 years ago

Take a look at MultiplySides and DivideSides.

POSTED BY: Rohit Namjoshi
POSTED BY: Roland Franzius
Posted 2 years ago

Try this code

eq = ax + by + c*z == 0; eqSplit = Apply[List, eq] ; Apply[Equal, (1/a)*eqSplit // Expand]

POSTED BY: He Tang
Posted 2 years ago
 1/a* (a*x + b*y + c*z)==0//Expand
POSTED BY: Jacques Ou
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard