Changes for page ONYX und MAXIMA
Last modified by Carina Enke on 12.12.2025
From version 6.2
edited by Carina Enke
on 12.12.2025
on 12.12.2025
Change comment:
There is no comment for this version
To version 7.1
edited by Carina Enke
on 12.12.2025
on 12.12.2025
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,9 +1,9 @@ 1 1 {{section}} 2 -{{column width="60 2 +~{~{column width="60 3 3 To perform more complex calculations and to fulfill specific requirements, the computer algebra system MAXIMA, which is linked to ONYX, can be used. The [[Netzwerk Mathematik>>url:https://bildungsportal.sachsen.de/opal/auth/RepositoryEntry/5499682817/CourseNode/88308307976325||shape="rect"]] has gathered a number of [[Good-Practice-Examples>>url:https://bildungsportal.sachsen.de/opal/auth/RepositoryEntry/5499682817/CourseNode/93229879750473/||shape="rect"]]. This collection of typical applications, tricks and pitfalls will help you understand how to use the MAXIMA connection in ONYX. Please find below a selection of topics that are described in detail. 4 4 5 5 6 -{{/column}} 6 +~{~{/column}} 7 7 8 8 {{column width="30%"}} 9 9 {{panel title="Content"}} ... ... @@ -13,8 +13,6 @@ 13 13 {{panel title="Related Topics"}} 14 14 * [[Good-Practice-Examples Maxima/ONYX in Netzwerk Mathematik>>url:https://bildungsportal.sachsen.de/opal/auth/RepositoryEntry/5499682817/CourseNode/93229879750473/wiki/Index||shape="rect"]] 15 15 {{/panel}} 16 - 17 - 18 18 {{/column}} 19 19 {{/section}} 20 20 ... ... @@ -25,10 +25,12 @@ 25 25 26 26 27 27 == Analysing user responses with the help of variables == 26 + 28 28 By using maxima queries in the Variables tab, you can access the answer selected by the user and the correct task solution. More details can be found here [[Expert assessment>>doc:ONYX.Erstellung von Testinhalten.Aufgaben.Bewertung festlegen.Expertenbewertung.WebHome]]. 29 29 30 30 31 31 == Auto-completion of invalid MAXIMA terms == 31 + 32 32 If during the creation or editing process of a variable the user enters a non-valid MAXIMA expression in the field for determining the value, ONYX converts the expression into a valid expression before transferring it to MAXIMA. 33 33 34 34 ... ... @@ -37,6 +37,7 @@ 37 37 When determining a numerical (variable) value, the "invalid" calculation defined by the author is completed with a** float command**: float(...);. 38 38 39 39 Example 40 + 40 40 * The calculation "1+2" is changed to the MAXIMA command "float(1+2);". 41 41 * The data type of the variable is taken into account for the result regardless of the MAXIMA calculation performed. 42 42 * If the value of a variable type "Integer" is set by the calculation "1+2", the result value of the MAXIMA calculation is "3.0", the variable value is set accordingly to "3" as an integer value. ... ... @@ -66,6 +66,7 @@ 66 66 When determining a text-based (variable) value, the "invalid" calculation defined by the author is completed with a semicolon. 67 67 68 68 Example 70 + 69 69 * The entry "a" is changed to the MAXIMA command "a;". 70 70 * The data type of the variable is taken into account for the result regardless of the MAXIMA calculation performed. 71 71 * If the value of the variable is set to the type "Text", the result value of the MAXIMA calculation is "a" and the variable value is accordingly set to "a".