wonderIntro to SageUseful LinksSage is…
Why Sage? We have Mathematica…
Wed, 2008-01-30 00:53 | eric
Getting my hands dirty with MTH 421 ODEsThe author of my ODE text V.I. Arnold giving the modern (last 50 years) abstract mathematics curriculum a sound flogging. Quite entertaining IMO.
Thu, 2008-01-17 06:28 | eric
Perfect number finder in pythonIn the interest of greater openness (sharing my inner life with the world and such), here is a bit of python I just wrote to find perfect numbers. After a few minutes of optimization, it is now quite fast and no longer brings OSX to its knees with memory-hungryness: from math import * def is_perfect(a): sum = 1 for i in xrange(2, floor(sqrt(a))): if a%i == 0: sum = sum + i + a/i if sqrt(a)%1 == 0: sum += sqrt(a) return sum == a def find_perfect(limit): results = [] for i in xrange(1, limit): j=2**i*(2**(i+1)-1) if is_perfect(j): results.append(j)
Sun, 2007-06-10 09:00 | root
HW #5: Spherical Coordinates, DuexThis work is borrowed gratefully from Flanders 4.1. Position in
with basis
with
Therefore, (answer part (a))
Mon, 2007-02-19 06:31 | eric
HW #3
Tue, 2007-02-13 23:35 | eric
HW #4: Orthogonal CoordinatesParaboloidal coordinates given as:
We express the Euclidean differential line element in terms of the derivatives (?) of our new coordinate basis:
Tue, 2007-02-13 22:15 | eric
Homework #1: Decomposable Forms
Sun, 2007-02-11 23:24 | eric
Oregon StateHey, long-time no blog. Well, I’ve moved to Corvallis (Heather too) and Monday was my first day of classes at OSU. Pretty smooth transfer from Portland State, the only sting being another $300 matriculation fee. Oh well. I've got my schedule worked out now, I think. I'm taking:
Thu, 2007-01-11 04:34 | eric
Math ForumI've been operating a forum site for my topology class. I'm planning to commercialize it. I just need a domain and a few additional features. I'm planning to update and improve the latexrender module to work properly with 4.7. It provides a filter to convert inline latex math text into images. This will of course be extremely useful for a math forum. Update! Daniel Gutekunst has picked up a google summer of code project to develop thorough LaTeX integration for Drupal. He calls his module Drutex. Cute :)
Fri, 2006-05-12 01:12 | eric
Rubiks Cube
These packages are available on Linux, Mac, Windows, etc. Planned features:
Mon, 2006-03-13 04:36 | eric
|
