HP-Prime Polynomials User Guide (version 0.0.5) and Request
http://jaimeza.org/Mathematic/HewlettPackard/HP_Prime_xCAS/HP_Prime_polynomials.pdf
Edited: 28 Sept 2013, 12:28 p.m. after one or more responses were posted
HP-Prime Polynomials: User Guide and Request
|
|
« Next Oldest | Next Newest »
|
▼
Post: #2
09-27-2013, 01:30 PM
HP-Prime Polynomials User Guide (version 0.0.5) and Request
http://jaimeza.org/Mathematic/HewlettPackard/HP_Prime_xCAS/HP_Prime_polynomials.pdf Edited: 28 Sept 2013, 12:28 p.m. after one or more responses were posted ▼ ▼
Post: #4
09-27-2013, 11:34 PM
Nuevo lanzamiento Version 0.0.3, con muchas mejoras, en redacción permanente hay un problema con diff, e int cuando la expresión es un polinomio como arreglo
diff(poly1[1,-4,4],x) => [ 0, 0, 0 ] ??? espero que se solucione pronto, la salida correcta es poly1[2,-4] Edited: 28 Sept 2013, 12:29 p.m. after one or more responses were posted ▼
Post: #5
09-28-2013, 12:27 PM
Nuevo lanzamiento Version 0.0.5 hay unos posibles BUGs, espero que TIM me ratifique o no los BUGs Composicion con polinomios
p(x) := x²+1; but
p(x) := poly1[ 1, 0, 1 ] diff(x²-4*x+4,x); => 2*x-4 diff( poly1[1,-4,4],x); => [ 0, 0, 0 ] // BUG? int([1,-4,4],x); => [ 0, 0, 0 ] // OK
int(poly1[1,-4,4],x); => [x,-4*x,4*x] // BUG?
Edited: 28 Sept 2013, 12:28 p.m. ▼
Post: #6
09-30-2013, 09:48 PM
Quote: What is "poly1" -- is this a built-in marker to mark a vector as a polynomial vector? or is this something you created? |