Differences between revisions 7 and 33 (spanning 26 versions)
Revision 7 as of 2009-03-01 00:45:39
Size: 2671
Comment:
Revision 33 as of 2009-03-02 05:40:14
Size: 1741
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
------------
Major Goals:
------------
= Sage for Newbies =
Line 5: Line 3:
1. SAGE as a Smart Calculator (target: Freshmen) <<TableOfContents>>
Line 7: Line 5:
2. SAGE Primers / Tutorials for == Done ==
Line 9: Line 7:
(a) Quadratic Forms (target: Arizona Winter School Participants)     * 0. Front Matter
Line 11: Line 9:
(b) Number Theory via Diophantine Equations (target: Elementary Number Theory students)     * 1. Basics
Line 13: Line 11:
(c) Number Theory via Primes (target: Elementary Number Theory students)           * 1.1. Primer Template: An Example [[attachment:primer_template\example.sws]] [[attachment:primer_design_principles.rtf]]
Line 15: Line 13:
(d) Group Theory (target: UnderGrad Math Majors) [http://abstract.ups.edu/sage-aata.html by Rob Beezer]           * 1.2. Sage as a Smart Calculator [[attachment:sage_as_a_smart_calculator.sws]]
Line 17: Line 15:
(e) Differential Calculus (target: Freshmen) [http://sage.math.washington.edu/home/wdj/teaching/calc1-sage/ by David Joyner]     * 2. Calculus
Line 19: Line 17:
(f) Integral Calculus (target: Freshmen) [http://wdjoyner.com/teach/calc2-sage/hoffman-stein-calculus.pdf by Hoffman, Joyner & Stein]           * 2.1. Differential Calculus [[attachment:differential_calculus.sws]]

    * 4. Abstract Algebra

          * 4.1. Group Theory [[attachment:group_theory.sws]] (by Robert Beezer)

    * 5. Number Theory

          * 5.1. Elementary Number Theory I [[attachment: number_theory.primes_0.1.sws]]

          * 5.5. Quadratic Forms [[attachment: quadratic_forms.sws]]

    * 9. About this document ...
Line 23: Line 33:
------------
Typesetting:
------------
== To Do ==
Line 27: Line 35:
reSTRUCTUREDtext [http://docutils.sourceforge.net/rst.html]     * 1. Basics
Line 29: Line 37:
          * 1.3. Programming in Sage
Line 30: Line 39:
          * 1.4. Sage Devel Basics
Line 31: Line 41:
    * 2. Calculus
Line 32: Line 43:
-------------
Sage Tutorial
-------------
          * 2.2. Integral Calculus
Line 36: Line 45:
Goals:           * 2.3. Multivariate Calculus
Line 38: Line 47:
1) Accessible to high school math teachers and undergraduate mathematics majors.           * 2.4. Taylor Series and Infinite Sums
Line 40: Line 49:
2) Anticipated user desires           * 2.5. Differential Equations
Line 42: Line 51:
a. Content specific modules     * 3. Linear Algebra
Line 44: Line 53:
i. Quadratic Forms           * 3.1. Matrix Algebra
Line 46: Line 55:
ii. Group theory           * 3.2. Vector Spaces
Line 48: Line 57:
iii. Abstract algebra     * 4. Abstract Algebra
Line 50: Line 59:
iv. Calculus           * 4.2. Rings and Fields
Line 52: Line 61:
v. Number theory     * 5. Number Theory
Line 54: Line 63:
vi. High school algebra / trigonometry / precalculus           * 5.2. Elementary Number Theory II
Line 56: Line 65:
vii. Probability           * 5.3. Cryptography
Line 58: Line 67:
viii. Statistics           * 5.4. Elliptic Curves
Line 60: Line 69:
b. Plotting 2 and 3 dimensions           * 5.6. Automorphic Forms
Line 62: Line 71:
c. Sage math functions (sage as calculator), sage constants           * 5.7. Quaternion Algebra
Line 64: Line 73:
d. Generate Classroom examples           * 5.8. Modular Forms
Line 66: Line 75:
i. show (), latex()     * 6. Combinatorics
Line 68: Line 77:
ii. matplotlab           * 6.1. Counting
Line 70: Line 79:
3) Demonstrate SAGE functionality:           * 6.2. Graph Theory
Line 72: Line 81:
a. Primes     * 7. Geometry
Line 74: Line 83:
b. Random numbers     * 8. Statistics
Line 76: Line 85:
c. Plotting           * 8.1. Statistical Methods
Line 78: Line 87:
d. Interact           * 8.2. Probability
Line 80: Line 89:
e. Sage data types

f. Email(?)

4) Programming

a. Types, casting, relevant Sage data types

b. Lists, tuples

c. Control operators (if, then, else, logical operators, in, srange())

d. Loops

i. For, in, srange(), range()

e. Functions

f. Recursion

5) Topics

a. Primes and factorization

i. Given a random number, is it a prime?

1. Modular division

a. random()

b. Factor()

2. Euclidean algorithm

a. Recursion

b. gcd()

3. primality testing

a. for loops

b. range()

c. is_prime()

ii. How many primes are there?

1. prime_pi()

2. plotting example

iii. Where are the primes?

1. Density of primes

2. primes()

3. Arithemtic sequences of primes

b. Diophantine equations

i. Linear Diophantine equation

1. extended euclidean algorithm

2. recursion vs iteration

ii. diagonal quadratic forms; sums of squares (ENT p. 25)

1. Pythagorean triples and generating them

2. Graphing the Pythagorean triples

3. Enumerating all triples using linear intersections

4. Elliptic curves and congruent numbers (chapter 6, stein)

iii. Pell’s Equation (?)
          * 8.3. Finance

Sage for Newbies

Done

To Do

  • 1. Basics
    • 1.3. Programming in Sage
    • 1.4. Sage Devel Basics
  • 2. Calculus
    • 2.2. Integral Calculus
    • 2.3. Multivariate Calculus
    • 2.4. Taylor Series and Infinite Sums
    • 2.5. Differential Equations
  • 3. Linear Algebra
    • 3.1. Matrix Algebra
    • 3.2. Vector Spaces
  • 4. Abstract Algebra
    • 4.2. Rings and Fields
  • 5. Number Theory
    • 5.2. Elementary Number Theory II
    • 5.3. Cryptography
    • 5.4. Elliptic Curves
    • 5.6. Automorphic Forms
    • 5.7. Quaternion Algebra
    • 5.8. Modular Forms
  • 6. Combinatorics
    • 6.1. Counting
    • 6.2. Graph Theory
  • 7. Geometry
  • 8. Statistics
    • 8.1. Statistical Methods
    • 8.2. Probability
    • 8.3. Finance

days13/projects/sagenewbie (last edited 2011-01-28 07:12:10 by Eviatar)