Skip to main content
CCN WIKI Books
View All
Search
Shelves
Books
Log in
Info
Content
solve[ ]
solve a*x +b == 0 for x
Page Revisions
Revision #398 Changes
solve a*x +b == 0 for x
sol = solve a*x +b == 0 for x; show sol; save as solve4;
Output
"sol" → {-(b/a)}
Back to top