codifyIntro to SageUseful LinksSage is…
Why Sage? We have Mathematica…
Intro to SageUseful LinksSage is…
Why Sage? We have Mathematica…
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. 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. 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) HW #5: Spherical Coordinates, DuexThis work is borrowed gratefully from Flanders 4.1. Position in
with basis
with
Therefore, (answer part (a))
HW #5: Spherical Coordinates, DuexThis work is borrowed gratefully from Flanders 4.1. Position in
with basis
with
Therefore, (answer part (a))
HW #3
HW #3
HW #4: Orthogonal CoordinatesParaboloidal coordinates given as:
We express the Euclidean differential line element in terms of the derivatives (?) of our new coordinate basis:
HW #4: Orthogonal CoordinatesParaboloidal coordinates given as:
We express the Euclidean differential line element in terms of the derivatives (?) of our new coordinate basis:
Homework #1: Decomposable Forms
Homework #1: Decomposable Forms
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:
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 :) Rubiks Cube
|
