What is the difference between the CAS-commands COLLECT and FACTOR?
HP Prime Collect/Factor difference
|
|
« Next Oldest | Next Newest »
|
▼ ▼
Post: #5
10-29-2013, 09:36 AM
To my understanding, collect organizes the algebraic object: Example: collect(x^2+3*x*t-2*t^2+2*x,x) returns x^2+3*x*t+2*x-2*t^2 collect(x^2+3*x*t-2*t^2+2*x,t) returns -2*t^2+3*x*t+x^2+2*x While factor attempts to factor a polynomial. |