Degree of a Polynomial (x, y, z, t) (CAS)
|
08-06-2016, 01:21 AM
(This post was last modified: 08-06-2016 01:23 AM by Eddie W. Shore.)
Post: #1
|
|||
|
|||
Degree of a Polynomial (x, y, z, t) (CAS)
The program degpoly is a more complete version of the degree command. The degree command tests a single variable, default to x if no variable is specified. The program degpoly calculates the degree of a polynomial, considering four variables: x, y, z, and t. Combinations of these four variables, such as x*y, x*y*z, and t*z are also considered.
HP Program degpoly: Code: #cas I recommend that you type out the commands when programming in CAS mode. Make sure the suffix “CAS.” is removed from any command inside the program. Accessing CAS Programs In CAS mode, press [Vars], then the soft key (CAS), select Program for the list of programs Examples: degpoly(x^2 + 3*x – 1) returns 2 degpoly(x^2 + 3*y – 1) returns 2 degpoly(x*y – y^2 + t) returns 2 degpoly(x^2*y^2 – 3*z^2) returns 4 |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)