AndradeGonzalez-wp2017/11/Solution #11/Maxima/exercise2.txt

21 lines
403 B
Plaintext
Raw Normal View History

2018-01-11 05:53:02 +01:00
+ Encuentra las raíces de la ecuación x ^ 3-21x + 20 = 0
Commands:
=========
eq1: x^3 -21*x+20=0;
solve(eq1,x);
Solution:
=========
(%i1) eq1: x^3 -21*x+20=0;
3
(%o1) x - 21 x + 20 = 0
(%i2) solve(eq1,x);
(%o2) [x = 1, x = 4, x = - 5]
(%i3)
Link to solution:
=================
2018-01-11 05:05:05 +01:00
http://maxima-online.org/?inc=r243085663