appendix the magma language
play

Appendix: The Magma Language Geoff Bailey School of Mathematics and - PDF document

Appendix: The Magma Language Geoff Bailey School of Mathematics and Statistics The University of Sydney Sydney, Australia Introduction The following is a brief introduction to the Magma language. It is not a com- prehensive description of the


  1. Appendix: The Magma Language Geoff Bailey School of Mathematics and Statistics The University of Sydney Sydney, Australia Introduction The following is a brief introduction to the Magma language. It is not a com- prehensive description of the language, nor is it a programming tutorial (al- though, inevitably, it has much in common with one). Instead, it is intended to describe the basic language features that account for the vast majority of code written in the Magma language. For a more in-depth treatment, see the language section of the Magma Handbook [1]. Some of the examples below will use language features that are not ex- plained until a later point; it is hoped in each case that the meaning will be clear enough for this not to cause problems. A certain familiarity with basic programming concepts such as expressions and statements will be assumed. 1 Basics 1.1 Statements and printing Throughout the book, code fragments will use a format similar to the example below. Lines beginning with > (the Magma prompt) indicate input to Magma (the prompt is not part of the input), while lines without the prompt indicate output produced by the preceding instructions. 1 + 1 > + 1; > 3 This trivial example already illustrates two important features of the language. Firstly, statements in Magma must end with a semicolon. Thus, no output occurred after the first line of input, as the statement was still incomplete at that point. Secondly, when a Magma statement is an expression, then the result of evaluating that expression will be printed. If multiple expressions

  2. 2 Geoff Bailey occur (separated by commas) in a single statement, then they will each be printed, separated by spaces. “ You are number ”, 6; > You are number 6 Note the use of a string (text surrounded by double quotes) in this example. A string prints as the text it contains. There are also two explicit print statements in Magma . print value , . . . , value printf format-string , value , . . . , value The print statement prints its values, exactly as would occur if the keyword print were omitted. It is thus rarely seen, although its use can improve code clarity. (It is also useful when debugging, as it can be easily searched for and removed once the problem has been solved.) The printf statement behaves similarly to the corresponding C function. The string argument is printed, with two types of substitutions made. Each instance of ‘ %o ’ in the string is replaced by the output from printing the corresponding value argument to printf (the first instance uses the first value argument, and so on). Also, two-character strings beginning with backslash are changed in the usual manner. For example, ‘ \t ’ is replaced with a tab character and ‘ \n ’ is replaced with a newline character. printf “ %o green %o...\n ”, 99, “ bottles ”; > 99 green bottles... print “ ...hanging on the wall ”; > ...hanging on the wall 1.2 Comments A comment is a way of specifying that some specific text should be ignored by Magma . There are two types of comments in Magma , matching those of the C and C++ languages. // comment text /* comment text */ The short form // applies to one line only; all text following the // on the same line is ignored. The long form /* . . . */ can extend over multiple lines; all text between the /* and the */ is ignored. 1 + 1 / / ; this semicolon is ignored > > /* As will be the one on the next line > +1; > */ + 1; / / Now the statement is finally finished > 3

  3. Appendix: The Magma Language 3 1.3 Intrinsic functions A function is an object that uses some values (the arguments ) to perform certain operations and produce some other values (the return values ). A pro- cedure is similar except that it has no return values. In Magma , a function or procedure is called by typing its name, followed by the values of its arguments (if any) enclosed within parentheses. name ( arguments ) If there are multiple arguments then commas are used to separate them. Magma contains a great many inbuilt, or intrinsic, functions and procedures, which are called intrinsics for short. The names of intrinsics are usually descriptive of their purpose. For in- stance, the intrinsic GreatestCommonDivisor computes the greatest common divisor of its two arguments. GreatestCommonDivisor ( 91, 224 ) ; > 7 Many intrinsics have synonyms that reflect different spellings, usages, or con- venient shorthand forms. For example, the names GCD and Gcd are synonyms of GreatestCommonDivisor . Functions may have more than one return value. One example is Quotrem , which returns the quotient and remainder (respectively) arising from Eu- clidean division of its arguments. Quotrem ( 16, 3 ) ; > 5 1 If a function returns multiple values but not all are used then the unused return values are silently discarded. For example, if a function call is part of an expression then only the first return value is used. 3 ∗ Quotrem ( 16, 3 ) ; > 15 Functions and procedures are described further in a later section which also describes how it is possible to create new functions and procedures, and how procedures may modify their arguments. 1.4 Arithmetic Magma includes the standard arithmetic operators +, − , and ∗ , as well as parentheses () for grouping. ( 2 + 3 ) ∗ ( 4 − 1 ) ; > 15 There are two versions of division, however, depending on what sort of object one is working with. The operators div and mod apply when working over Eu-

  4. 4 Geoff Bailey clidean rings (such as Z ), and return the quotient and remainder (respectively) of the division. 16 div 3, 16 mod 3; > 5 1 The operator / applies when working over fields, where the (exact) quotient is returned. It can also be used when working over rings; in this case the result will be returned as an element of the appropriate field of fractions. 16.0 / 3.0; > 5.333333333333333333333333333 16 / 3; > 16/3 Note that this latter example took two elements from the Euclidean ring Z but returned a result in its field of fractions Q . Parent ( 16 ) ; > Integer Ring Parent ( 16 / 3 ) ; > Rational Field (The intrinsic Parent returns the structure that contains the specified object.) The other important arithmetic operator is ˆ , which is used for expo- nentiation. However, in this book exponentiation has been indicated in the conventional way as a superscript and the ˆ is not shown. So, whereas one would type 4 ˆ 2 into Magma , in the examples it would appear as follows. 4 2 ; > 16 1.5 Variables, assignment, mutation, and where A variable is a name that may have a value associated with it. Variables can be given a value by using an assignment statement. name := value ; name , . . . , name := values ; (As is common with interpreted languages, variables in Magma do not need to be declared; they are defined by use and the type of a variable is that of the value it currently contains.) seconds := 24 ∗ 60 ∗ 60; / / seconds per day > seconds ; > 86400

  5. Appendix: The Magma Language 5 Magma also has mutation operations, which are a convenient shorthand for the most common kind of variable modification. These have the form variable op := value ; and are equivalent to the longer form variable := variable op value . Here most binary operators may be used in place of op . seconds ∗ := 365 + 1 / 4; / / Average seconds per year > seconds ; > 31557600 seconds /:= 12; / / Average seconds per month > seconds ; > 2629800 The special symbol _ may appear on the left hand side of an assignment statement instead of a variable, and indicates that the value that would have been assigned should be discarded instead. It is most commonly used to get rid of unwanted return values from functions. p := 17; > x := 12; > _ , _ , xinv := XGCD ( p , x ) ; / / Extended GCD > x ∗ xinv mod p ; > 1 There is a special kind of ‘temporary’ assignment available in Magma , using the where clause. There are two minor variations of this clause. expression where name := value expression where name is value In each case the expression is evaluated as though name were a variable with the given value. The previous value of the variable (if any) is unchanged by this process; the changed value applies only while evaluating the expression. x ∗ xinv mod p where p is 13; > 7 p ; > 17 The use of where is particularly desirable when a lengthy or computationally expensive sub-expression occurs multiple times within the one expression. Modexp ( 3, p − 1, p ) where p is 2 n + 1 where n is 2 5 ; > 3029026160 (The intrinsic Modexp ( x , n , m ) efficiently computes x n mod m .) Note the use of more than one where in this example.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend