Difference between revisions of "CAS View"

From GeoGebra Manual
Jump to: navigation, search
m
Line 1: Line 1:
 
<noinclude>{{Manual Page}}[[Category:Manual (official)|{{PAGENAME}}]]</noinclude>  
 
<noinclude>{{Manual Page}}[[Category:Manual (official)|{{PAGENAME}}]]</noinclude>  
 +
<noinclude>{{Manual Page|version=5.0}}</noinclude>
 
{{gui|view}}
 
{{gui|view}}
The CAS view allows you to use GeoGebra's CAS (Computer Algebra System) for symbolic computations. The view consists of cells, each of them has an input field at the top and output display at the bottom. You can use these input fields in the same way as the normal [[Input Bar]], with following differences:
 
* you can use variables that were not assigned any value, e.g. <code>(a+b)^2</code> evaluates to ''a^2+2*a*b+b^2''
 
* <code>=</code> is used for equations and <code>:=</code> for assignments. This means that <code>a=2</code> will '''not''' assign value 2 to ''a''. See the [[#Assignments & Connection with GeoGebra|section about assignments]] for details.
 
* multiplication should be marked explicitly. While in the [[Input Bar]] you can use both <code>a(b+c)</code> and <code>a*(b+c)</code> for multiplication, in CAS only the latter is valid.
 
  
==Basic input==
+
=CAS View User Interface=
* {{KeyCode|Enter}}: evaluate input
+
By default, the ''CAS View'' is opened next to the ''[[Graphics View]]''. Depending on which one of these two ''Views'' is active, either the [[CAS Tools|''CAS View Toolbar'']] or the [[Graphics Tools|''Graphics View Toolbar'']] is displayed at the top of the GeoGebra window, with the ''Undo / Redo'' buttons in the top right corner.
* {{KeyCode|Ctrl+Enter}}: evaluate numerically the input, e.g. <code>sqrt(2)</code> yields ''1.41''.
 
* {{KeyCode|Alt+Enter}}: check input but do no evaluate input, e.g. <code>b + b</code> stays as ''b + b''. Note that assignments are always evaluated, e.g. <code>a := 5</code>
 
* In an empty row type:
 
**  {{KeyCode|Space}} bar for previous output
 
**  <code>)</code> for previous output in parentheses
 
**  <code>=</code> for previous input
 
* Suppress output with a semicolon at the end of your input, e.g. <code>a := 5;</code>
 
  
==Showing and hiding objects==
+
The ''CAS View'' is part of the [[Perspectives#CAS Perspective|''CAS Perspective'']], although you may [[GeoGebra_5.0_Desktop_vs._Web_and_Tablet_App#Customizing_the_Layout_of_the_User_Interface|change the layout]] of GeoGebra's user interface according to your needs.
In the CAS View, the icon to the left of every row shows the current visibility state (shown or hidden) of the object defined in it (when possible). You may directly click on the little white/marble icon in order to change the visibility status of the object in the [[Graphics View]].
 
  
==Toolbar==
+
=Creating Mathematical Objects=
* Clicking a button in the toolbar applies the related command to the currently edited row
+
==Direct Input==
* You can select part of the input text to only apply the operation to this selected part
+
The ''CAS View'' allows you to use GeoGebra's CAS (Computer Algebra System) for symbolic computations. It consists of cells with an ''Input Field'' at the top and output display at the bottom. You can use these ''Input Fields'' in the same way as the normal ''[[Input Bar]]'', with the following differences:
 +
* You can use variables that were not assigned any value. {{Example|1=Enter <code>(a+b)^2</code> into an ''Input Field'' and hit the {{KeyCode|Enter}} key. You will get the output ''a²+2ab+b²''.}}
 +
* <code>=</code> is used for equations and <code>:=</code> for assignments. This means that the input <code>a=2</code> will not assign value 2 to ''a''. See the [[#Variable Assignments and Connection with other Views|section about assignments]] for details.
 +
* Multiplication needs to be marked explicitly. While in the ''[[Input Bar]]'' you can use both <code>a(b+c)</code> and <code>a*(b+c)</code> for multiplication, in the ''CAS View'' only <code>a*(b+c)</code> is valid.
  
==Using the row header context menu==
+
==Keyboard Shortcuts for Direct Input==
A right click on a row header shows a context menu, with the following options:
+
In the ''CAS View'' the following keyboard shortcuts help you to evaluate or check your input.
* ''Insert Above'': inserts an empty row above the current one
+
{{note|Instead of using these keyboard shortcuts, you may also use the corresponding [[CAS Tools|''Tools'']] of the [[#CAS View Toolbar|''CAS View Toolbar'']].}}
* ''Insert Below'':  inserts an empty row below the current one
+
* {{KeyCode|Enter}}: Evaluates you input
* ''Delete Row'': deletes the contents of the current row
+
* {{KeyCode|Ctrl+Enter}}: Evaluates your input numerically {{Example|1=<code>sqrt(2)</code> yields ''1.41''}}
* ''Text'': toggles between the current result and a text showing the current result contained in the row - allows the user to insert comments
+
* {{KeyCode|Alt+Enter}}: Checks your input but does not evaluate it. {{Example|1=<code>b + b</code> stays as ''b + b''.}}{{note|Assignments are always evaluated, e.g. <code>a := 5</code>}}
* ''Copy as LaTeX'': copies the contents of the current row to the Clipboard, allowing to paste the contents e.g. in a text object.
 
: {{note|1=To copy the contents of more than one CAS row as LaTeX, select the rows you want with {{KeyCode|Ctrl}}+click, then right-click on the row header and select ''Copy as LaTeX''.}}
 
  
==Using the cell context menu==
+
<br>
A right click on a CAS cell shows a context menu, with the following options:
+
In the ''CAS View'' the following keyboard shortcuts help you to reuse previous input or output in a new row if you enter them into an empty ''Input Field'':
* ''Copy'': copies the cell contents to the ''Clipboard'' (a right click on a new cell shows a ''Paste'' option)
+
* {{KeyCode|Space}} bar: Inserts the previous output into the new row.
* ''Copy as LaTeX'': copies the cell contents to the ''Clipboard'', in LaTeX format. (so it can be pasted into a [[Text]] object or a LaTeX editor)
+
* <code>)</code>: Inserts the previous output in parentheses.
* ''Copy as LibreOffice formula'': copies the cell contents to the ''Clipboard'', in LibreOffice formula format (so it can be pasted in a word processing document)
+
* <code>=</code>: Inserts the previous input into the new row.
* ''Copy as Image'': copies the cell contents to the ''Clipboard'', in PNG format (so it can be pasted into an [[Image Tool|Image]] object or in a word processing document)
 
  
==Variables==
+
{{note|You may suppress any output with a semicolon at the end of your input, e.g. <code>a := 5;</code>.}}
===Assignments & Connection with GeoGebra===
+
 
* Assignments use the <code>:=</code> notation, e.g. <code>b := 5</code>, <code>a(n) := 2n + 3</code>
+
 
* To free up a variable name again, use <code>Delete[b]</code>
+
==Variable Assignments and Connection with other Views==
* To redefine a variable or function , you must do so '''in the same cell''', otherwise it will be treated as a new variable and renamed
+
You may use the <code>:=</code> notation for assignments, e.g. <code>b := 5</code>, <code>a(n) := 2n + 3</code>.
* Variables and functions are always shared between the CAS view and GeoGebra if possible. If you define <code>b:=5</code> in the CAS view, then you can use ''b'' in all of GeoGebra. If you have a function <code>f(x)=x^2</code> in GeoGebra, you can also use this function in the CAS view.  
+
* ''Free up a name'': Use <code>Delete[b]</code> in order to free up a variable name again.
 +
* ''Redefine a variable or function'': You may redefine a variable or function, but you must do so '''in the same cell''', otherwise it will be treated as a new variable and automatically renamed.
 +
 
 +
Variables and functions are always shared between the ''CAS View'' and the other ''Views'' if possible. For example:
 +
*If you define <code>b:=5</code> in the ''CAS View'', then you can use ''b'' in all the other ''Views'' of GeoGebra.  
 +
*If you define a function <code>f(x)=x^2</code> in another ''View'', you can also use this function in the ''CAS View''.
  
 
{{note|1=<div>The output will always be just the expression '''after''' the <code>:=</code>, e.g. if you type <code>b:=5</code> the output will be ''5''. Please also note, that for clarification actually ''b := 5'' will be displayed.</div>}}
 
{{note|1=<div>The output will always be just the expression '''after''' the <code>:=</code>, e.g. if you type <code>b:=5</code> the output will be ''5''. Please also note, that for clarification actually ''b := 5'' will be displayed.</div>}}
  
===Row References===
+
==Equations==
 +
* You may write equations using the simple Equals sign, e.g. <code>3x + 5 = 7</code>.
 +
* ''Arithmetic operations'': You can perform arithmetic operations on equations, which is useful for manual equation solving. {{Example|1=<code>(3x + 5 = 7) - 5</code> subtracts 5 from both sides of the equation.}}
 +
* ''Extracting one Side'': You may extract either the left or right side of an equation by using the commands <code>LeftSide[]</code> and <code>RightSide[]</code>. {{Example|1=<code>LeftSide[3x + 5 = 7]</code> returns ''3 x + 5'' and <code>RightSide[3x + 5 = 7]</code> returns ''7'' }}
  
You can refer to other rows in the CAS view in two ways:
+
==Row References==
 +
You can refer to other rows in the ''CAS View'' in two ways:
 +
* '''Static row references''' copy the output and '''won't be updated''' if the ''referenced'' row is subsequently changed
 +
** <code><nowiki>#</nowiki></code>: Copies the previous output.
 +
** <code><nowiki>#5</nowiki></code>: Copies the output of row 5.
 +
* '''Dynamic row references''' insert a reference to another row instead of the actual output and therefore '''will be updated''' if the ''referenced'' row is subsequently changed
 +
** <code><nowiki>$</nowiki></code>: Inserts a reference to the previous output.
 +
** <code><nowiki>$</nowiki>5</code>: Inserts a reference to the output of row 5
  
* Static row references copy the output and '''won't''' be updated if the ''referenced'' row is subsequently changed
 
** <code><nowiki>#</nowiki></code> copy the previous output
 
** <code><nowiki>#5</nowiki></code> copy the output of row 5
 
* Dynamic row references insert a reference to another row instead of the actual output and therefore '''will''' be updated if the ''referenced ''row is subsequently changed
 
** <code><nowiki>$</nowiki></code> insert a reference to the previous output
 
** <code><nowiki>$</nowiki>5</code> insert a reference to the output of row 5
 
  
==Equations==
+
=CAS Commands=
 +
GeoGebra also offers a wide range of ''[[CAS Commands]]'' that can be used to create objects in the ''CAS View''. Just start typing the name of a ''Command'' into the ''Input Field'' and GeoGebra will offer you a list of ''Commands'' that match your input.
  
* Equations are written using the simple Equals sign, e.g. <code>3x + 5 = 7</code>
+
{{note|For a complete list of ''Commands'' see section [[CAS Commands]].}}
* You can perform arithmetic operations on equations, e.g. <code>(3x + 5 = 7) - 5</code> subtracts 5 from both sides of the equation. This is useful for manual equation solving.
 
* <code>LeftSide[3x + 5 = 7]</code> returns ''3 x + 5'' and <code>RightSide[3x + 5 = 7]</code> returns ''7''
 
  
== CAS & Geometry ==
 
From 4.9.170.0, the CAS View supports exact versions of some of the geometry commands
 
  
test
+
==CAS View and Geometry Commands==
===Exact calculations===
+
From GeoGebra 4.9.170.0 on, the ''CAS View'' supports exact versions of some of the ''[[Geometry Commands]]''.
  
 +
===Exact Calculations===
  
 
{| class=pretty
 
{| class=pretty
Line 98: Line 94:
 
|}
 
|}
  
===Symbolic computations===
+
===Symbolic Computations===
 
 
  
 
{| class=pretty
 
{| class=pretty
Line 122: Line 117:
 
|}
 
|}
  
 +
=CAS View Toolbar=
 +
The [[CAS Tools|''CAS View Toolbar'']] provides a range of ''[[CAS Tools]]'' that can be operated with the mouse and allow you to evaluate input and perform calculations. Just enter your input and use the mouse to click on the corresponding ''CAS Tool'' afterwards in order to apply it to your input.
 +
{{hint|You may select part of the input text to only apply the operation to this selected part.}}
 +
{{note|For a complete list of ''Tools'' see [[CAS Tools]].}}
  
 +
=Context Menus=
 +
==Row Header Context Menu==
 +
Right click (MacOS: {{KeyCode|Ctrl}}-click) on a row header in order to show a ''Context Menu'' with the following options:
 +
* '''Insert Above''': Inserts an empty row above the current one.
 +
* '''Insert Below''':  Inserts an empty row below the current one.
 +
* '''Delete Row''': Deletes the contents of the current row.
 +
* '''Text''': Toggles between the current result and a text showing the current result contained in the row, which allows the user to insert comments.
 +
* '''Copy as LaTeX''': Copies the contents of the current row to your computer’s clipboard, allowing you to paste the contents e.g. in a [[Text]] object.
 +
: {{note|1=To copy the contents of more than one CAS row as LaTeX, select the rows you want with {{KeyCode|Ctrl}}-click (MacOS: {{KeyCode|Cmd}}-click), then right-click (MacOS: {{KeyCode|Ctrl}}-click) on the row header and select ''Copy as LaTeX''.}}
  
 +
==Cell Context Menu==
 +
Right click (MacOS: {{KeyCode|Ctrl}}-click) on a CAS cell in order to show a ''Context Menu'' with the following options:
 +
* '''Copy''': Copies the cell contents to the your computer’s clipboard. Then, right click on a new cell in order to show the '''Paste''' option.
 +
* '''Copy as LaTeX''': Copies the cell contents in LaTeX format to the your computer’s clipboard, so it can be pasted into a [[Text]] object or a LaTeX editor.
 +
* '''Copy as LibreOffice Formula''': Copies the cell contents in LibreOffice formula format to your computer’s clipboard, so it can be pasted in a word processing document.
 +
* '''Copy as Image''': Copies the cell contents in PNG format to your computer’s clipboard, so it can be pasted into an [[Image Tool|Image]] object or in a word processing document.
  
 +
=Display of Mathematical Objects=
 +
==[[Style_Bar#CAS_View_Style_Bar|CAS View Style Bar]]==
 +
The [[Style_Bar#CAS_View_Style_Bar|''CAS View Style Bar'']] provides buttons to
 +
*change the text style and color
 +
*display a virtual keyboard (GeoGebra Desktop)
 +
*display additional [[Views|''Views'']] in the GeoGebra window (GeoGebra Web and Tablet Apps)
  
 
+
==Showing CAS Objects in the ''Graphics View''==
==Commands and Tools==
+
In the CAS View, the icon to the left of every row shows the current visibility state (shown or hidden) of the object defined in it (when possible). You may directly click on the little [[File:Mode_showhideobject.svg|link=|16px]] ''Show / Hide Object'' icon in order to change the visibility status of the object in the [[Graphics View]].
 
 
For a complete list of commands and tools see [[CAS Commands]] and [[CAS tools]].
 

Revision as of 09:15, 7 November 2014



CAS View User Interface

By default, the CAS View is opened next to the Graphics View. Depending on which one of these two Views is active, either the CAS View Toolbar or the Graphics View Toolbar is displayed at the top of the GeoGebra window, with the Undo / Redo buttons in the top right corner.

The CAS View is part of the CAS Perspective, although you may change the layout of GeoGebra's user interface according to your needs.

Creating Mathematical Objects

Direct Input

The CAS View allows you to use GeoGebra's CAS (Computer Algebra System) for symbolic computations. It consists of cells with an Input Field at the top and output display at the bottom. You can use these Input Fields in the same way as the normal Input Bar, with the following differences:

  • You can use variables that were not assigned any value.
    Example: Enter (a+b)^2 into an Input Field and hit the Enter key. You will get the output a²+2ab+b².
  • = is used for equations and := for assignments. This means that the input a=2 will not assign value 2 to a. See the section about assignments for details.
  • Multiplication needs to be marked explicitly. While in the Input Bar you can use both a(b+c) and a*(b+c) for multiplication, in the CAS View only a*(b+c) is valid.

Keyboard Shortcuts for Direct Input

In the CAS View the following keyboard shortcuts help you to evaluate or check your input.

Note: Instead of using these keyboard shortcuts, you may also use the corresponding Tools of the CAS View Toolbar.
  • Enter: Evaluates you input
  • Ctrl + Enter: Evaluates your input numerically
    Example: sqrt(2) yields 1.41
  • Alt + Enter: Checks your input but does not evaluate it.
    Example: b + b stays as b + b.
Note: Assignments are always evaluated, e.g. a := 5


In the CAS View the following keyboard shortcuts help you to reuse previous input or output in a new row if you enter them into an empty Input Field:

  • Space bar: Inserts the previous output into the new row.
  • ): Inserts the previous output in parentheses.
  • =: Inserts the previous input into the new row.
Note: You may suppress any output with a semicolon at the end of your input, e.g. a := 5;.


Variable Assignments and Connection with other Views

You may use the := notation for assignments, e.g. b := 5, a(n) := 2n + 3.

  • Free up a name: Use Delete[b] in order to free up a variable name again.
  • Redefine a variable or function: You may redefine a variable or function, but you must do so in the same cell, otherwise it will be treated as a new variable and automatically renamed.

Variables and functions are always shared between the CAS View and the other Views if possible. For example:

  • If you define b:=5 in the CAS View, then you can use b in all the other Views of GeoGebra.
  • If you define a function f(x)=x^2 in another View, you can also use this function in the CAS View.
Note:
The output will always be just the expression after the :=, e.g. if you type b:=5 the output will be 5. Please also note, that for clarification actually b := 5 will be displayed.

Equations

  • You may write equations using the simple Equals sign, e.g. 3x + 5 = 7.
  • Arithmetic operations: You can perform arithmetic operations on equations, which is useful for manual equation solving.
    Example: (3x + 5 = 7) - 5 subtracts 5 from both sides of the equation.
  • Extracting one Side: You may extract either the left or right side of an equation by using the commands LeftSide[] and RightSide[].
    Example: LeftSide[3x + 5 = 7] returns 3 x + 5 and RightSide[3x + 5 = 7] returns 7


Row References

You can refer to other rows in the CAS View in two ways:

  • Static row references copy the output and won't be updated if the referenced row is subsequently changed
    • #: Copies the previous output.
    • #5: Copies the output of row 5.
  • Dynamic row references insert a reference to another row instead of the actual output and therefore will be updated if the referenced row is subsequently changed
    • $: Inserts a reference to the previous output.
    • $5: Inserts a reference to the output of row 5


CAS Commands

GeoGebra also offers a wide range of CAS Commands that can be used to create objects in the CAS View. Just start typing the name of a Command into the Input Field and GeoGebra will offer you a list of Commands that match your input.

Note: For a complete list of Commands see section CAS Commands.


CAS View and Geometry Commands

From GeoGebra 4.9.170.0 on, the CAS View supports exact versions of some of the Geometry Commands.

Exact Calculations

Command Tool Evaluate.gif Evaluate Tool Numeric.gif Numeric
or Input,
Rounding 2 Decimal Places
Angle[(1,0),(0,0),(1,2)] arctan \left( 2 \right) Numeric : 1.11
Input : 63.43° or 1.11 rad according Angle Unit selected
AngleBisector[(0,1),(0,0),(1,0)] y = x Numeric : y = x
Input : - 0.71 x +0.71 y = 0
Circumference[x^2+y^2=1/sqrt(π)] 2 \; \sqrt{\pi \; \sqrt{\pi}} 4.72
Distance[(0,0), x + y = 1]

Simplify[Distance[(0,0), x+y=1]]
\frac{1}{\sqrt{2}}

\frac{\sqrt{2}}{2}
0.71
Distance[(0,0),x+2y=4]

Simplify[Distance[(0,0),x+2y=4]]
\frac{4}{\sqrt{5}}

4 \cdot \frac{\sqrt{5}}{5}
1.79
Distance[(0,4),y=x^2]

Simplify[Distance[(0,4),y=x^2]]
\sqrt{ \left( \frac{7}{2} - 4 \right)^{2} + \left( -\frac{1}{2} \; \sqrt{14} \right)^{2}}

\frac{\sqrt{15}}{2}
1.94

Distance[(0.5,0.5),x^2+y^2=1]

Simplify[ Distance[(0.5,0.5),x^2+y^2=1]]
\frac{\frac{1}{\sqrt{2}}}{\sqrt{2}} \; \sqrt{ \left( -\sqrt{2} + 1 \right) \; \left( -\sqrt{2} + 1 \right) \; \sqrt{2} \; \sqrt{2}}

\frac{-\sqrt{2} + 2}{2}
0.29
Ellipse[(2,1),(5,2),(5,1)] 28 \; x^{2} - 24 \; x \; y - 160 \; x + 60 \; y^{2} - 96 \; y + 256 = 0 Numeric : 28 \; x^{2} - 24 \; x \; y - 160 \; x + 60 \; y^{2} - 96 \; y + 256 = 0
Input : 7 \; x^{2} - 6 \; x \; y + 15 \; y^{2} - 40 \; x + - 24 \; y = - 64
Ellipse[(2,1),(5,2),(6,1)] 32 \; x^{2} \; \sqrt{2} + 36 \; x^{2} - 224 \; x \; \sqrt{2} - 24 \; x \; y - 216 \; x \; ...
\; ... + 32 \; \sqrt{2} \; y^{2} - 96 \; \sqrt{2} \; y + 256 \; \sqrt{2} + 68 \; y^{2} - 120 \; y + 196 = 0
Numeric : 81.25 \; x^{2} - 24 \; x \; y - 532.78 \; x + 113.25 \; y^{2} - 255.76 \; y + 558.04 = 0
Input : 81.25 \; x^{2} - 24 \; x \; y - 532.78 \; x + 113.25 \; y^{2} - 255.76 \; y = - 558.04
Radius[x^2+y^2=1/sqrt(π)] \frac{\sqrt{\pi \; \sqrt{\pi}}}{\pi} 0.75

Symbolic Computations

Command Tool Evaluate.gif Evaluate Tool Numeric.gif Numeric
Circle[(a,b),r] (y - b)² + (x - a)² = r² Delete.png
Distance[(a,b),(c,d)] \sqrt{ \left( b - d \right)^{2} + \left( a - c \right)^{2}} \sqrt{a^{2} - 2 \; a \; c + b^{2} - 2 \; b \; d + c^{2} + d^{2}}
Distance[(a,b),p x + q y = r]
Line[(a,b),(c,d)] y = \frac{x}{a - c} \; \left( b - d \right) + \frac{1}{a - c} \; \left( a \; d - b \; c \right) y = \frac{a \; d - b \; c + b \; x - d \; x}{a - c}
Line[(a,b),y=p x+q] y = p x - a p + b y = -a p + b + p x
MidPoint[(a,b),(c,d)] \left( \frac{a + c}{2}, \frac{b + d}{2} \right) \left( 0.5 \; a + 0.5 \; c, 0.5 \; b + 0.5 \; d \right)
PerpendicularBisector[(a,b),(c,d)] y = \frac{-a + c}{b - d} \; x + \frac{a^{2} + b^{2} - c^{2} - d^{2}}{2 \; b - 2 \; d} y = \frac{a^{2} - 2 \; a \; x + b^{2} - c^{2} + 2 \; c \; x - d^{2}}{2 \; b - 2 \; d}

CAS View Toolbar

The CAS View Toolbar provides a range of CAS Tools that can be operated with the mouse and allow you to evaluate input and perform calculations. Just enter your input and use the mouse to click on the corresponding CAS Tool afterwards in order to apply it to your input.

Note Hint: You may select part of the input text to only apply the operation to this selected part.
Note: For a complete list of Tools see CAS Tools.

Context Menus

Row Header Context Menu

Right click (MacOS: Ctrl-click) on a row header in order to show a Context Menu with the following options:

  • Insert Above: Inserts an empty row above the current one.
  • Insert Below: Inserts an empty row below the current one.
  • Delete Row: Deletes the contents of the current row.
  • Text: Toggles between the current result and a text showing the current result contained in the row, which allows the user to insert comments.
  • Copy as LaTeX: Copies the contents of the current row to your computer’s clipboard, allowing you to paste the contents e.g. in a Text object.
Note: To copy the contents of more than one CAS row as LaTeX, select the rows you want with Ctrl-click (MacOS: Cmd-click), then right-click (MacOS: Ctrl-click) on the row header and select Copy as LaTeX.

Cell Context Menu

Right click (MacOS: Ctrl-click) on a CAS cell in order to show a Context Menu with the following options:

  • Copy: Copies the cell contents to the your computer’s clipboard. Then, right click on a new cell in order to show the Paste option.
  • Copy as LaTeX: Copies the cell contents in LaTeX format to the your computer’s clipboard, so it can be pasted into a Text object or a LaTeX editor.
  • Copy as LibreOffice Formula: Copies the cell contents in LibreOffice formula format to your computer’s clipboard, so it can be pasted in a word processing document.
  • Copy as Image: Copies the cell contents in PNG format to your computer’s clipboard, so it can be pasted into an Image object or in a word processing document.

Display of Mathematical Objects

CAS View Style Bar

The CAS View Style Bar provides buttons to

  • change the text style and color
  • display a virtual keyboard (GeoGebra Desktop)
  • display additional Views in the GeoGebra window (GeoGebra Web and Tablet Apps)

Showing CAS Objects in the Graphics View

In the CAS View, the icon to the left of every row shows the current visibility state (shown or hidden) of the object defined in it (when possible). You may directly click on the little Mode showhideobject.svg Show / Hide Object icon in order to change the visibility status of the object in the Graphics View.

© 2024 International GeoGebra Institute