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).

Operar sumatorios con el programa matematico SAGE

Solapas principales

[adsense:336x280:9156825571]
Vamos a realizar la siguiente operacion con sumatorios con el programa / software matematico Sage. Tomando tf los siguientes valores 25*10^(-6), 100*10^(-6) y la variable tr los valores 2,5
tfr=\frac{\sum\limits_{i=0}^{2}tr_i\cdot ts_i}{\sum \limits_{i=0}^{2}ts_i}
tfs=\sum\limits_{i=0}^{2}ts_i
 
 
El programa en el software matematico Sage para realizar el sumatorio 
 
Sage: tf=[25*10^(-6), 100*10^(-6)]

Sage: tr=[2,5]


Sage: def tfr(tf,tr):
Sage:     
  a=0
  
Sage:       b=0
  
Sage:          for i in range(2):
    
Sage:              a=a+tf*tr
    
Sage:              b=tf+b
  
Sage:       return(a/b)

Sage: tfr(tf,tr).n()
Sage: tfs=sum(tf for i in range(2))
Sage: tfs

Resultado:

4.4

0.000125

Calcular sumatorio

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