Mensaje de error

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls en book_prev() (línea 775 de /home1/montes/public_html/drupal/modules/book/book.module).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters en drupal_get_feeds() (línea 394 de /home1/montes/public_html/drupal/includes/common.inc).

4.4 Ejemplo

Solapas principales

[adsense:336x280:9156825571]
Aclaraciones en el ejemplo 4.4
 
Vamos a calcular las raices del polinomio r^2-r-2=0
 
r^2-r-2=0
 
x=\frac{-1\pm \sqrt{(-1)^2-4\cdot 1\cdot (-2)}}{2\cdot 1}=\frac{-1\pm 3}{2}=1,-2
 
r^2-r-2=(r-1)\cdot (r+2)=0
 
 
Vamos a comprobar el resultado con Sagemath:
Sage: x = var('x')
Sage: f=x^2-x-2
Sage: f.roots()

Resultado con Sagemath

[(2, 1), (-1, 1)]
 
Vamos a calcular las raices del polinomio con Sagemath
Sage: x = var('x')
Sage: f=x^2-x-2
Sage: f.factor()

Resultado con Sagemath

(x + 1)*(x - 2)

 

Español

Añadir nuevo comentario

Plain text

  • No se permiten etiquetas HTML.
  • Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
  • Saltos automáticos de líneas y de párrafos.
Pin It