Differences between revisions 28 and 50 (spanning 22 versions)
Revision 28 as of 2009-03-02 05:22:32
Size: 2737
Comment:
Revision 50 as of 2009-04-18 18:21:35
Size: 2244
Editor: JoseGuzman
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Sage for Newbies = = Sage Primers =
Line 5: Line 5:
== Major Goals : Sage Primers ==
Line 7: Line 6:
=== Basics === == Done / In Progress ==
Line 9: Line 8:
 * Primer Guidelines [[attachment:primer_template\example.sws]]     * 0. Sage Primer Design Principles [[attachment:Sage Primer Design Principles.pdf]] [[attachment:primer_design_principles.rtf]]
Line 11: Line 10:
 * Primer Design Principles [[attachment:primer_design_principles.rtf]]     * 1. Basics
Line 13: Line 12:
 * SAGE as a Smart Calculator (target: Freshmen) [[attachment:Sage_as_a_Smart_Calculator_0.3.sws]] [[attachment:Sage_as_a_Smart_Calculator_0.4.sws]]           * 1.1. Primer Template: An Example [[attachment:primer_template_example.sws]]
Line 15: Line 14:
=== Calculus ===           * 1.2. Sage as a Smart Calculator [[attachment:basics.smart_calculator_0.5.sws]]
Line 17: Line 16:
 * Differential Calculus (target: Freshmen) [[attachment:Differential_Calculus_Primer_0.3.sws]]           * 1.3. Basic 2D plotting with Sage [[attachment:Plotting_with_Sage.sws]]
Line 19: Line 18:
 * Integral Calculus (target: Freshmen)           * 1.4. Sage Devel Basics [Erik, Aly] [[attachment:dev_for_newbies.html]]-this needs to be restified., [[attachment: development_for_newbies.sws]]
Line 21: Line 20:
=== Number Theory ===     * 2. Calculus
Line 23: Line 22:
 * Quadratic Forms (target: Arizona Winter School Participants) [[attachment: quadratic_forms.sws]]           * 2.1. Differential Calculus [[attachment:calculus.differential_calculus_1.0.sws]]
Line 25: Line 24:
 * Number Theory via Diophantine Equations (target: Elementary Number Theory students)           * 2.2. Integral Calculus [Sourav]
Line 27: Line 26:
 * Number Theory via Primes (target: Elementary Number Theory students) [[attachment: number_theory.primes_0.1.sws]]     * 3. Linear Algebra
Line 29: Line 28:
=== Abstract Algebra ===           * 3.1. Matrix Algebra [Sourav]
Line 31: Line 30:
 * Group Theory (target: Undergraduate Math Majors)     * 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.5.sws]]

          * 5.2. Elementary Number Theory II [Erik]

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

          * 5.7. Quaternion Algebra [Sourav]

    * 9. About this document ...
Line 34: Line 47:
== Target
Line 36: Line 48:
1) Accessible to high school math teachers and undergraduate mathematics majors. == To Do ==
Line 38: Line 50:
2) Anticipated user desires     * 1. Basics
Line 40: Line 52:
a. Content specific modules           * 1.3. Programming in Sage
Line 42: Line 54:
i. Quadratic Forms           * 1.5. 2D and 3D Plotting in Sage [JoseGuzman]
Line 44: Line 56:
ii. Group theory           * 1.6. Interact in Sage [Erik]
Line 46: Line 58:
iii. Abstract algebra     * 2. Calculus
Line 48: Line 60:
iv. Calculus           * 2.3. Multivariate Calculus
Line 50: Line 62:
v. Number theory           * 2.4. Taylor Series and Infinite Sums
Line 52: Line 64:
vi. High school algebra / trigonometry / precalculus           * 2.5. Differential Equations
Line 54: Line 66:
vii. Probability     * 3. Linear Algebra
Line 56: Line 68:
viii. Statistics           * 3.2. Vector Spaces [Sourav]
Line 58: Line 70:
b. Plotting 2 and 3 dimensions     * 4. Abstract Algebra
Line 60: Line 72:
c. Sage math functions (sage as calculator), sage constants           * 4.2. Rings and Fields [Erik]
Line 62: Line 74:
d. Generate Classroom examples     * 5. Number Theory
Line 64: Line 76:
i. show (), latex()           * 5.3. Cryptography [Dan]
Line 66: Line 78:
ii. matplotlab           * 5.4. Elliptic Curves [Aly]
Line 68: Line 80:
3) Demonstrate SAGE functionality:           * 5.6. Automorphic Forms
Line 70: Line 82:
a. Primes           * 5.8. Modular Forms
Line 72: Line 84:
b. Random numbers     * 6. Combinatorics
Line 74: Line 86:
c. Plotting           * 6.1. Counting
Line 76: Line 88:
d. Interact           * 6.2. Graph Theory
Line 78: Line 90:
e. Sage data types     * 7. Geometry
Line 80: Line 92:
4) Programming     * 8. Statistics
Line 82: Line 94:
a. Types, casting, relevant Sage data types           * 8.1. Statistical Methods [Erik]
Line 84: Line 96:
b. Lists, tuples           * 8.2. Probability [Erik]
Line 86: Line 98:
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 Primers

Done / In Progress

To Do

  • 1. Basics
    • 1.3. Programming in Sage
    • 1.5. 2D and 3D Plotting in Sage [JoseGuzman]

    • 1.6. Interact in Sage [Erik]
  • 2. Calculus
    • 2.3. Multivariate Calculus
    • 2.4. Taylor Series and Infinite Sums
    • 2.5. Differential Equations
  • 3. Linear Algebra
    • 3.2. Vector Spaces [Sourav]
  • 4. Abstract Algebra
    • 4.2. Rings and Fields [Erik]
  • 5. Number Theory
    • 5.3. Cryptography [Dan]
    • 5.4. Elliptic Curves [Aly]
    • 5.6. Automorphic Forms
    • 5.8. Modular Forms
  • 6. Combinatorics
    • 6.1. Counting
    • 6.2. Graph Theory
  • 7. Geometry
  • 8. Statistics
    • 8.1. Statistical Methods [Erik]
    • 8.2. Probability [Erik]
    • 8.3. Finance

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