Differenze tra le versioni di "Vista CAS"

Da GeoGebra Manual.
(Autogenerated from properties)
 
Riga 1: Riga 1:
 
<noinclude>{{Manual Page|version=4.0}}</noinclude>{{gui|view}}
 
<noinclude>{{Manual Page|version=4.0}}</noinclude>{{gui|view}}
 
:{{translate|CAS View}}
 
:{{translate|CAS View}}
 +
 +
{{description}}
 +
==Informazioni di base==
 +
 +
* INVIO: calcola l'espressione inserita
 +
* CTRL+INVIO: verifica l'inserimento ma non lo calcola, ad es. b+b rimane b+b. Le assegnazioni vengono sempre calcolate, come ad es. a := 5
 +
* In una riga vuota digitare:
 +
**  SPAZIO per ottenere il risultato
 +
**  ) per ottenere il risultato precedente in parentesi
 +
**  = per ottenere l'inserimento precedente
 +
* Per non visualizzare il risultato digitare un punto e virgola al termine dell'inserimento,ad es. a := 5;
 +
 +
==Barra degli strumenti==
 +
 +
* Fare clic su un pulsante della barra degli strumenti per applicare un comando alla riga corrente
 +
* Selezionare una parte dell'inserimento per applicare l'operazione solo alla selezione
 +
 +
==Variabili==
 +
===Assegnazioni e collegamento con GeoGebra===
 +
 +
* Le assegnazioni utilizzano la notazione := , ad es. b := 5, a(n) := 2n + 3
 +
* Per liberare un nome di variabile, utilizzare il comando Elimina[b] or b :=
 +
* Le variabili e le funzioni sono sempre condivise tra la Vista CAS e GeoGebra, se possibile. Definnendo b:=5 nella Vista CAS è possibile utilizzare ''b'' in GeoGebra. La funzione f(x)=x^2 definita in GeoGebra può essere utilizzata nella Vista Grafica.
 +
 +
===Riferimenti di riga===
 +
 +
È possibile riferirsi ad altre righe della Vista CAS in due modi:
 +
 +
* I riferimenti di riga statici inseriscono il testo presente in un'altra riga, modificando l'inserimento corrente.
 +
**  # inserisce il risultato precedente
 +
**  #5 inserisce il risultato della riga 5
 +
**  ## inserisce l'inserimento precedente
 +
**  #5# inserisce l'inserimento della riga 5
 +
* I riferimenti di riga dinamici utilizzano il testo presente in un'altra riga, ma non modificano l'inserimento corrente.
 +
**  $ inserisce il risultato precedente
 +
**  $5 inserisce il risultato della riga 5
 +
**  $$ inserisce l'inserimento precedente
 +
**  $5$ inserisce l'inserimento della riga 5
 +
 +
==Equazioni==
 +
 +
* Per inserire un'equazione utilizzare il simbolo di ''uguale'', ad es. 3x + 5 = 7
 +
* È possibile applicare operazioni aritmetiche alle equazioni, ad es. (3x + 5 = 7) - 5 sottrae 5 da entrambi i membri dell'equazione. Questa opzione è particolarmente utile per la risoluzione manuale di equazioni.
 +
* LeftSide[3x + 5 = 7] gives 3x+5 and RightSide[3x + 5 = 7] gives 7
 +
 +
==Solve Equations==
 +
 +
You can use the Solutions and Solve commands to solve equations.
 +
 +
* Solutions[ equation ] and solves an equation for x
 +
**  Solutions[ x^2 = 4 ] returns {2, -2}
 +
* Solutions[ equation, var ] solves an equation for the given variable.
 +
**  Solutions[ 3a = 5b, a ] returns {5b / 3}
 +
* Solve[ equation ] and solves an equation for x
 +
**  Solve[ x^2 = 4 ] returns {x = 2, x = -2}
 +
* Solve[ equation, var ] solves an equation for the given variable.
 +
**  Solve[ 3a = 5b, a ] returns {a = 5b / 3}
 +
 +
==System of Two Equations==
 +
 +
* Solutions2[equation1, equation2] solves two equations for x and y
 +
**  Solutions2[x + y = 2, y = x] returns <nowiki>{{1,1}} </nowiki>
 +
* Solutions2[equation1, equation2, var1, var2] solves two equations for var1 and var2
 +
**  Solutions2[a + b = 2, a = b, a, b] returns <nowiki>{{1,1}} </nowiki>
 +
* Solve2[equation1, equation2] solves two equations for x and y
 +
**  Solve2[x + y = 2, y = x] returns <nowiki>{{x = 1, y = 1}} </nowiki>
 +
* Solve2[equation1, equation2, var1, var2] solves two equations for var1 and var2
 +
**  Solve2[a + b = 2, a = b, a, b] returns <nowiki>{{x = 1,y = 1}} </nowiki>
 +
 +
==Basic commands==
 +
 +
* Expand[ exp ]expands the given expression
 +
**  Expand[ (x-2) (x+3) ] returns x^2 + x - 6
 +
* Factor[ exp ] factors the given expression
 +
**  Factor[ 2x^3 + 3x^2 - 1 ] returns 2*(x+1)^2 * (x-1/2)
 +
* Numeric[ exp ], Numeric[ exp, precision ] tries to determine a numerical approximation of the given expression
 +
**  Numeric[ 1/2 ] returns 0.5
 +
**  Numeric[ sin(1), 20 ] returns 0.84147098480789650666
 +
 +
==Calculus==
 +
 +
* Limit[ exp, var, value ] tries to determine the limit of an expression.
 +
**  Limit[ sin(x)/x, x, 0 ] returns 1
 +
 +
* LimitAbove[ exp, var, value ] tries to determine the limit of an expression.
 +
**  LimitAbove[ 1/x, x, 0 ] returns Infinity
 +
 +
* LimitBelow[ exp, var, value ] tries to determine the limit of an expression.
 +
**  LimitBelow[ 1/x, x, 0 ] returns -Infinity
 +
 +
* Sum[ exp, var, from, to ] finds the sum of a sequence
 +
**  Sum[i^2, i, 1, 3] returns 14
 +
**  Sum[r^i, i,0,n] returns (1-r^(n+1))/(1-r)
 +
**  Sum[(1/3)^i, i,0,Infinity] returns 3/2
 +
 +
* Derivative[ function ], Derivative[ function, var ], Derivative[ function, var, n ] takes the derivative of a function with respect to the given variable. If no variable is given, "x" is used.
 +
**  Derivative[ sin(x)/x^2, x ] returns (x^2*cos(x) - sin(x)*2*x) / x^4
 +
**  Derivative[ sin(a*x), x, 2 ] returns -sin(a*x)*a^2
 +
 +
* Integral[ function, var ], Integral[ function, var, x1, x2 ] finds the (definite) integral of a function with respect to the given variable
 +
**  Integral[ cos(x), x ] returns sin(x)
 +
**  Integral[ cos(x), x, a, b ] returns sin(b) - sin(a)
 +
 +
==Further Commands and Tools==
 +
 +
For the complete list see [[CAS Commands]] and [[CAS tools]].
 +
==Styling Bar==
 +
{{description}}

Versione delle 12:07, 3 giu 2011

Some content was not yet translated. See the English original. Please edit the manual page if you have the rights for translation.



Informazioni di base

  • INVIO: calcola l'espressione inserita
  • CTRL+INVIO: verifica l'inserimento ma non lo calcola, ad es. b+b rimane b+b. Le assegnazioni vengono sempre calcolate, come ad es. a := 5
  • In una riga vuota digitare:
    • SPAZIO per ottenere il risultato
    • ) per ottenere il risultato precedente in parentesi
    • = per ottenere l'inserimento precedente
  • Per non visualizzare il risultato digitare un punto e virgola al termine dell'inserimento,ad es. a := 5;

Barra degli strumenti

  • Fare clic su un pulsante della barra degli strumenti per applicare un comando alla riga corrente
  • Selezionare una parte dell'inserimento per applicare l'operazione solo alla selezione

Variabili

Assegnazioni e collegamento con GeoGebra

  • Le assegnazioni utilizzano la notazione := , ad es. b := 5, a(n) := 2n + 3
  • Per liberare un nome di variabile, utilizzare il comando Elimina[b] or b :=
  • Le variabili e le funzioni sono sempre condivise tra la Vista CAS e GeoGebra, se possibile. Definnendo b:=5 nella Vista CAS è possibile utilizzare b in GeoGebra. La funzione f(x)=x^2 definita in GeoGebra può essere utilizzata nella Vista Grafica.

Riferimenti di riga

È possibile riferirsi ad altre righe della Vista CAS in due modi:

  • I riferimenti di riga statici inseriscono il testo presente in un'altra riga, modificando l'inserimento corrente.
    • # inserisce il risultato precedente
    • #5 inserisce il risultato della riga 5
    • ## inserisce l'inserimento precedente
    • #5# inserisce l'inserimento della riga 5
  • I riferimenti di riga dinamici utilizzano il testo presente in un'altra riga, ma non modificano l'inserimento corrente.
    • $ inserisce il risultato precedente
    • $5 inserisce il risultato della riga 5
    • $$ inserisce l'inserimento precedente
    • $5$ inserisce l'inserimento della riga 5

Equazioni

  • Per inserire un'equazione utilizzare il simbolo di uguale, ad es. 3x + 5 = 7
  • È possibile applicare operazioni aritmetiche alle equazioni, ad es. (3x + 5 = 7) - 5 sottrae 5 da entrambi i membri dell'equazione. Questa opzione è particolarmente utile per la risoluzione manuale di equazioni.
  • LeftSide[3x + 5 = 7] gives 3x+5 and RightSide[3x + 5 = 7] gives 7

Solve Equations

You can use the Solutions and Solve commands to solve equations.

  • Solutions[ equation ] and solves an equation for x
    • Solutions[ x^2 = 4 ] returns {2, -2}
  • Solutions[ equation, var ] solves an equation for the given variable.
    • Solutions[ 3a = 5b, a ] returns {5b / 3}
  • Solve[ equation ] and solves an equation for x
    • Solve[ x^2 = 4 ] returns {x = 2, x = -2}
  • Solve[ equation, var ] solves an equation for the given variable.
    • Solve[ 3a = 5b, a ] returns {a = 5b / 3}

System of Two Equations

  • Solutions2[equation1, equation2] solves two equations for x and y
    • Solutions2[x + y = 2, y = x] returns {{1,1}}
  • Solutions2[equation1, equation2, var1, var2] solves two equations for var1 and var2
    • Solutions2[a + b = 2, a = b, a, b] returns {{1,1}}
  • Solve2[equation1, equation2] solves two equations for x and y
    • Solve2[x + y = 2, y = x] returns {{x = 1, y = 1}}
  • Solve2[equation1, equation2, var1, var2] solves two equations for var1 and var2
    • Solve2[a + b = 2, a = b, a, b] returns {{x = 1,y = 1}}

Basic commands

  • Expand[ exp ]expands the given expression
    • Expand[ (x-2) (x+3) ] returns x^2 + x - 6
  • Factor[ exp ] factors the given expression
    • Factor[ 2x^3 + 3x^2 - 1 ] returns 2*(x+1)^2 * (x-1/2)
  • Numeric[ exp ], Numeric[ exp, precision ] tries to determine a numerical approximation of the given expression
    • Numeric[ 1/2 ] returns 0.5
    • Numeric[ sin(1), 20 ] returns 0.84147098480789650666

Calculus

  • Limit[ exp, var, value ] tries to determine the limit of an expression.
    • Limit[ sin(x)/x, x, 0 ] returns 1
  • LimitAbove[ exp, var, value ] tries to determine the limit of an expression.
    • LimitAbove[ 1/x, x, 0 ] returns Infinity
  • LimitBelow[ exp, var, value ] tries to determine the limit of an expression.
    • LimitBelow[ 1/x, x, 0 ] returns -Infinity
  • Sum[ exp, var, from, to ] finds the sum of a sequence
    • Sum[i^2, i, 1, 3] returns 14
    • Sum[r^i, i,0,n] returns (1-r^(n+1))/(1-r)
    • Sum[(1/3)^i, i,0,Infinity] returns 3/2
  • Derivative[ function ], Derivative[ function, var ], Derivative[ function, var, n ] takes the derivative of a function with respect to the given variable. If no variable is given, "x" is used.
    • Derivative[ sin(x)/x^2, x ] returns (x^2*cos(x) - sin(x)*2*x) / x^4
    • Derivative[ sin(a*x), x, 2 ] returns -sin(a*x)*a^2
  • Integral[ function, var ], Integral[ function, var, x1, x2 ] finds the (definite) integral of a function with respect to the given variable
    • Integral[ cos(x), x ] returns sin(x)
    • Integral[ cos(x), x, a, b ] returns sin(b) - sin(a)

Further Commands and Tools

For the complete list see CAS Commands and CAS tools.

Styling Bar


Commenti

Un video di presentazione delle funzionalità principali della Vista CAS.


© 2024 International GeoGebra Institute