You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The idea here is to implement the Collect function of the wolfram language: "successively collects together terms that involve the same powers of objects matching x1, then x2, ….".
e.g.
(collect (+ (* a x) (* b y) (* c x) (* d y))
[x y])
->
(+ (* (+ a c) x) (* (+ b d) y))
The text was updated successfully, but these errors were encountered:
The idea here is to implement the Collect function of the wolfram language: "successively collects together terms that involve the same powers of objects matching x1, then x2, ….".
e.g.
->
The text was updated successfully, but these errors were encountered: