Category Archives: mathematics

elusive avoidance

I’ve been designing printable models of the Lawson-Klein surface w = cos(u) cos(2v) x = cos(u) sin(2v) y = sin(u) cos(v) z = sin(u) sin(v) As you can plainly see, this figure lives in S3 (positively curved 3-space), so stereographic … Continue reading

Posted in mathematics, merch | 2 Comments

unapologetically one-sided

My newest design on Shapeways is a model of the Lawson-Klein surface : a stereographic projection of ( cos(u)cos(2v), cos(u)sin(2v), sin(u)cos(v), sin(u)sin(v) )

Posted in mathematics, merch | 2 Comments

naming is hard

I often have trouble giving meaningful concise names to variables in the programs I write, perhaps because, until I reach for the keyboard, my thinking is largely nonverbal. I suspect that it would be less of a problem for someone … Continue reading

Posted in curve-fitting, neep-neep | 4 Comments

relax

This curve-fitting thingy is one of several projects on which I’ve made progress in rare fits over several years. It ran into two big snags. I haven’t found how to determine which gridpoints are within the pen-width of a blending … Continue reading

Posted in curve-fitting | 2 Comments

FCC cube generator

I could have used this a week ago. def fccstack(): newlimit = 0 while True: oldlimit = newlimit newlimit += 1 # extend z for x in xrange(oldlimit): for y in xrange((x+oldlimit)&1, oldlimit, 2): yield (x,y,oldlimit) # extend y for … Continue reading

Posted in mathematics, neep-neep | Leave a comment

some thoughts about packing

My bundle of 19 fullerenes is arranged in a face-centred cubic lattice, each ball occupying one of the 24 even-numbered cells of a 4×4×3 array (and parts of the adjacent cells). The spacing of the grid planes is determined by … Continue reading

Posted in mathematics | 3 Comments

as many as it takes

allRGB: images in which each of 16 million colors occurs exactly once. (Found at MathPuzzle.) I see I’m not the only one to think of the Hilbert curve idea, but I’ll post two others. In unrelated news, I was surprised … Continue reading

Posted in Cascadia, eye-candy, mathematics | Leave a comment