/* Melody * (cleft) 2005 D. Cuartielles for K3 * * This example uses a piezo speaker to play melodies. It sends * a square wave of the appropriate frequency to the piezo, generating * the corresponding tone. * * The calculation of the tones is made following the mathematical * operation: * * timeHigh = period / 2 = 1 / (2 * toneFrequency) * * where the different tones are described as in the table: * * note frequency period timeHigh * c 261 Hz 3830 1915 * d 294 Hz 3400 1700 * e 329 Hz 3038 1519 * f 349 Hz 2864 1432 * g 392 Hz 2550 1275 * a 440 Hz 2272 1136 * b 493 Hz 2028 1014 * C 523 Hz 1912 956 * * http://www.arduino.cc/en/Tutorial/Melody */ int speakerPin = 9; int button1 = 3; int button2 = 4; int button3 = 5; int val1 = 0; int val2 = 0; int val3 = 0; int length = 15; // the number of notes char notes[] = "ccggaagffeeddc "; // a space represents a rest int beats[] = { 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 4 }; int tempo = 300; void playTone(int tone, int duration) { for (long i = 0; i < duration * 1000L; i += tone * 2) { digitalWrite(speakerPin, HIGH); delayMicroseconds(tone); digitalWrite(speakerPin, LOW); delayMicroseconds(tone); } } void playNote(char note, int duration) { char names[] = { 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'C' }; int tones[] = { 1915, 1700, 1519, 1432, 1275, 1136, 1014, 956 }; // play the tone corresponding to the note name for (int i = 0; i < 8; i++) { if (names[i] == note) { playTone(tones[i], duration); } } } void setup() { pinMode(speakerPin, OUTPUT); pinMode(button1, INPUT); pinMode(button2, INPUT); pinMode(button3, INPUT); } void loop() { val1 = digitalRead(button1); val2 = digitalRead(button2); val3 = digitalRead(button3); if (val1 == LOW) { playNote('c', 1 * tempo); // } else { // playNote(notes[i], beats[i] * tempo); } if (val2 == LOW) { playNote('e', 1 * tempo); } if (val3 == LOW) { playNote('g', 1 * tempo); } }
May 22, 2013
World's silliest arduino-based electronic musical instrument
This is the world's silliest arduino-based electronic musical instrument. It is a mashup of the "Melody" tutorial and the "Button" tutorial. The code I modified (see below) strips out the part where the tune is actually played and instead plays a single note when each button is pressed.
Hoop jumping
INCIDENTAL COMICS: Message to a Graduate
By the end of high school, all I could see was the hoop jumping. I was so sick of it: every class was predetermined for me with only my extracurriculars to numb the boredom of the required classes. I looked forward to college knowing that while I would have to take general education classes, at least I would have options to choose from.
By the end of college, I saw that while the hoops were fewer and further between, I still detested them. I put off some general education classes until the last year I was in school. I looked forward to going to grad school where there would be no hoops to jump through.
By the end of grad school, I realized that I was wrong about the hoops. They were still there, they were just disguised. I grudgingly jumped through them and looked forward to getting out of grad school so I could be free of the hoops.
By now I've come to understand that the hoops never truly go away. But what this comic says to me is that I can choose my own goals which are interesting to me. That makes all the difference in the world.
(Thanks to @rjallain for pointing the comic out to me on twitter.)
![]() |
Image credit: Grant Snider, Incidental Comics |
By the end of high school, all I could see was the hoop jumping. I was so sick of it: every class was predetermined for me with only my extracurriculars to numb the boredom of the required classes. I looked forward to college knowing that while I would have to take general education classes, at least I would have options to choose from.
By the end of college, I saw that while the hoops were fewer and further between, I still detested them. I put off some general education classes until the last year I was in school. I looked forward to going to grad school where there would be no hoops to jump through.
By the end of grad school, I realized that I was wrong about the hoops. They were still there, they were just disguised. I grudgingly jumped through them and looked forward to getting out of grad school so I could be free of the hoops.
By now I've come to understand that the hoops never truly go away. But what this comic says to me is that I can choose my own goals which are interesting to me. That makes all the difference in the world.
(Thanks to @rjallain for pointing the comic out to me on twitter.)
May 08, 2013
New rules for screencast assignments
I tend to really hate rules in the classes I teach. I like the formats to be free flowing so that students are empowered to learn in their own way and in their own style.
I like screencasts as assessments, especially when I'm able to get them watched and responded to rapidly as intended. But anyone who makes blanket statements about students today being "digital natives" who grew up online creating and sharing content have not been in the same classrooms I've been in.
For next year I have some new rules for submitting screencasts:
1.) I will only accept URLs as screencast submissions. I don't want a file as an attachment to an email in whatever crazy format came out of the camera. I don't want an audio file with a snapshot of the work done. I don't want a thumbdrive with each screencast file sized over 300 MB. I want a link to your screencast which is on youtube, screencast.com, vimeo or similar.
2.) All students will be shown this Public Service Announcement on the first day. If I can't see the work done on the page while I'm in full screen mode, then what is the point of getting the visuals? Not that it is much better sometimes when the camera is held close to the page. My head hurts after watching videos where less than half a page of work is shown in video and so the camera is constantly panning back and forth. The same goes for videos sent to me in landscape orientation but with the page rotated...or upside down. Students will be told to watch their videos before sending me the link.
3.) All phones must have notifications turned off while recording screencasts. I'm listening to screencasts when the volume explodes with some random buzzing and I jump out of my skin. It is five freaking minutes that the text messages, facebook updates, tweets, emails, phone calls and instagrams can just be shut down.
Most of the complaints I have are about screencasts done using cell phone cameras. I don't mind the use of the cell phone camera, it just seems more prone to the problem videos that I get.
I like screencasts as assessments, especially when I'm able to get them watched and responded to rapidly as intended. But anyone who makes blanket statements about students today being "digital natives" who grew up online creating and sharing content have not been in the same classrooms I've been in.
For next year I have some new rules for submitting screencasts:
1.) I will only accept URLs as screencast submissions. I don't want a file as an attachment to an email in whatever crazy format came out of the camera. I don't want an audio file with a snapshot of the work done. I don't want a thumbdrive with each screencast file sized over 300 MB. I want a link to your screencast which is on youtube, screencast.com, vimeo or similar.
2.) All students will be shown this Public Service Announcement on the first day. If I can't see the work done on the page while I'm in full screen mode, then what is the point of getting the visuals? Not that it is much better sometimes when the camera is held close to the page. My head hurts after watching videos where less than half a page of work is shown in video and so the camera is constantly panning back and forth. The same goes for videos sent to me in landscape orientation but with the page rotated...or upside down. Students will be told to watch their videos before sending me the link.
3.) All phones must have notifications turned off while recording screencasts. I'm listening to screencasts when the volume explodes with some random buzzing and I jump out of my skin. It is five freaking minutes that the text messages, facebook updates, tweets, emails, phone calls and instagrams can just be shut down.
Most of the complaints I have are about screencasts done using cell phone cameras. I don't mind the use of the cell phone camera, it just seems more prone to the problem videos that I get.
March 30, 2013
On gender stereotypes, rocket science and the f-bomb
Rocket scientist dies. NYT obit leads with her cooking skills, husband and kids. Oh just fuck off. nyti.ms/13GUqax HT @stevesilbermanThe above was retweeted by someone I follow this afternoon, and I was interested enough to follow the link to see what the minor uproar was about.
— Ed Yong(@edyong209) March 30, 2013
Reading the obituary, I learned a great deal about the contributions to engineering of rocket systems used in satellites and space missions made by an engineer who happened to be a woman. As so often happens when I read obituaries, I was a little sad that I did not know more about Yvonne Brill's accomplishments during her lifetime, but I do feel enriched by having learned something about her life and work.
Of course, the reason that the obituary was pointed out by Ed Yong was because it leads (lede? I'm not a journalist.) off with a stereotype of a women as a cook and mother. I take Yong's outrage to be that because this was first in the article, it must be assumed that we are to think that Brill was foremost a mother and wife and secondarily, therefore lesser, a scientist or engineer.
When people I respect link to other people that I don't follow on twitter, I do want to take them seriously. On the other hand, I have hesitations about engaging with people dropping f-bombs. The chance that the issue raised is too likely to be emotionally charged that I have a hard time judging rationally the actual content of the article. In this case, I had to reread the article three times so that I felt I could honestly evaluate the problems with this article.
Here's the introduction to the obituary:
She made a mean beef stroganoff, followed her husband from job to job and took eight years off from work to raise three children. “The world’s best mom,” her son Matthew said.
But Yvonne Brill, who died on Wednesday at 88 in Princeton, N.J., was also a brilliant rocket scientist, who in the early 1970s invented a propulsion system to help keep communications satellites from slipping out of their orbits.Is there a way that it could have been written to be less offensive? Let's try this:
She made a mean beef stroganoff, followed her husband from job to job and took eight years off from work to raise three children. “The world’s best mom,” her son Matthew said.
Yvonne Brill, who died on Wednesday at 88 in Princeton, N.J., was a brilliant rocket scientist, who in the early 1970s invented a propulsion system to help keep communications satellites from slipping out of their orbits.That's better. There's no need to include words like "but" and "also" when we're talking about people's career versus personal life. The distinction should be obvious to any reader.
Can we make any other improvements? What if the order of the first two paragraphs were switched?
Yvonne Brill, who died on Wednesday at 88 in Princeton, N.J., was a brilliant rocket scientist, who in the early 1970s invented a propulsion system to help keep communications satellites from slipping out of their orbits
She made a mean beef stroganoff, followed her husband from job to job and took eight years off from work to raise three children. “The world’s best mom,” her son Matthew said.I personally feel the argument that starting with the cooking and family life details is implicitly misogynistic to be a little weak. I had to read the article multiple times to make sure I wasn't missing something more than the opening paragraphs. By my count, 16 of the 22 paragraphs were about Brill's work, including being a woman in a male-dominated field. Is she not also entitled to be remembered for what she was like away from the office? By simply reversing the order of the two first paragraphs, the implicit framing of Brill as woman first, scientist second is removed, no doubt. For me, that's enough to justify a claim that the obituary could have been better written.
But, can we take the outrage down a few notches? Reading through the conversation following Yong's tweet, it seems that there is a "you're either with us, or you're against us" mentality. No doubt, there are some who just don't get what the outrage is about. Are we trying to raise awareness about how profiles of scientists can be framed in potentially harmful ways, or are we just looking to have outrage for the sake of outrage?
For me, I learned about the life work of a person I had never heard of, and I am grateful I now know a bit about her. But, it was also a reminder why I'm skeptical of emotionally charged tweets. In this case, I clicked through, and was please to learn about Brill. I might have just as easily decided to skip the article because of the language in Yong's tweet. Frustrated or not with gender stereotypes, I don't believe that the science community is necessarily always better off with outrage as the default reaction.
March 04, 2013
Why I don't like the "Doppler Rocket"
It's time for me to rethink how we look at the Doppler effect in class.
When I'm working with a class on the physics of sound, whether it is a general physics class or a physics of music class, the Doppler effect is always one of the topics in whatever textbook we are using. Time permitting, we will look at the Doppler effect. I think it's an interesting topic, and it certainly has important and useful applications in other fields of science: astronomy, medicine, weather, etc.
What I can't stand, though, is the terrible quality of the standard acoustic Doppler effect demos. I'm talking about the demonstrations where you take a sound source and tie a string to it, then whirl the string around your head with the sound source making a circle around you. The class is supposed to hear the change in pitch alternating between getting higher (while the source is moving toward them) and going lower (while moving away from them).
Unfortunately, the demo often has two major flaws with it:
1.) The change is pitch is often within the just noticeable difference (jnd) for non-ear trained musicians.
and,
b.) The change in pitches is almost always overwhelmed by the observation of the relative change in AMPLITUDE. As the source moves away from the class, it seems to be less loud, and louder as it is approaching the class.
The situation is not much better when the demo is using a "Doppler Rocket" or "Doppler Ball" where a sound source is embedded in a soft ball then thrown or slid along a guide string across the room. While it is usually the case that the frequency change can be more noticeable with these demos, since the speed of the ball can be high enough to make the frequency be outside the average jnd, my experience has been that the change in amplitude is even more dramatic with the Doppler Rockets.
What to do? For me, it's interesting. I mean, one of the main ideas in science is that we only want to test one thing at a time. But in this experiment, we seemingly have two inextricably linked quantities that are changing.
I don't have a real good answer for what I want to do to get around these conceptual challenges. I've tried an Interactive Lecture Demo style presentation on the Doppler effect without the success I was hoping for. I may try that approach again, but I'm sort of leaning towards making the Doppler effect a lab activity where students have to confront the two aspects of the experiment (frequency and amplitude) and tease them out separately. I'm not sure if that will work at the introductory level, but I'm willing to try.
When I'm working with a class on the physics of sound, whether it is a general physics class or a physics of music class, the Doppler effect is always one of the topics in whatever textbook we are using. Time permitting, we will look at the Doppler effect. I think it's an interesting topic, and it certainly has important and useful applications in other fields of science: astronomy, medicine, weather, etc.
What I can't stand, though, is the terrible quality of the standard acoustic Doppler effect demos. I'm talking about the demonstrations where you take a sound source and tie a string to it, then whirl the string around your head with the sound source making a circle around you. The class is supposed to hear the change in pitch alternating between getting higher (while the source is moving toward them) and going lower (while moving away from them).
Unfortunately, the demo often has two major flaws with it:
1.) The change is pitch is often within the just noticeable difference (jnd) for non-ear trained musicians.
and,
b.) The change in pitches is almost always overwhelmed by the observation of the relative change in AMPLITUDE. As the source moves away from the class, it seems to be less loud, and louder as it is approaching the class.
The situation is not much better when the demo is using a "Doppler Rocket" or "Doppler Ball" where a sound source is embedded in a soft ball then thrown or slid along a guide string across the room. While it is usually the case that the frequency change can be more noticeable with these demos, since the speed of the ball can be high enough to make the frequency be outside the average jnd, my experience has been that the change in amplitude is even more dramatic with the Doppler Rockets.
What to do? For me, it's interesting. I mean, one of the main ideas in science is that we only want to test one thing at a time. But in this experiment, we seemingly have two inextricably linked quantities that are changing.
I don't have a real good answer for what I want to do to get around these conceptual challenges. I've tried an Interactive Lecture Demo style presentation on the Doppler effect without the success I was hoping for. I may try that approach again, but I'm sort of leaning towards making the Doppler effect a lab activity where students have to confront the two aspects of the experiment (frequency and amplitude) and tease them out separately. I'm not sure if that will work at the introductory level, but I'm willing to try.
March 02, 2013
Weekend book review: The Radioactive Boy Scout
One of the first magazine articles I ever remember reading on the internet was the story of a teenager who wanted to build a nuclear reactor at his home. This was probably in 1998, during the thick of my time in college majoring in physics. That time, as I recall, was before it was common to have magazine articles online. But Harpers Magazine was forward thinking, and the article was linked to from several nerdy websites that I read daily back then.
I learned about the concept of a breeder reactor, I learned that smoke detectors often used radioactive sources for their operation, and I learned that I wanted to know more about this story. I was happy to hear that the author of the book had written a full-length book on the topic.
It took me awhile, but I finally got around to reading the book "The Radioactive Boy Scout" a few years ago. I was not disappointed in the fleshing out of the story, although I was also not surprised that in parts of the book it felt like it was being padded to fill space.
The book was definitely a quick read, and it was worth going back to after years of first hearing the story.
The Radioactive Boy Scout: The Frightening True Story of a Whiz Kid and His Homemade Nuclear Reactor by Ken Silverstein
My rating: 4 of 5 stars
View all my reviews
I learned about the concept of a breeder reactor, I learned that smoke detectors often used radioactive sources for their operation, and I learned that I wanted to know more about this story. I was happy to hear that the author of the book had written a full-length book on the topic.
It took me awhile, but I finally got around to reading the book "The Radioactive Boy Scout" a few years ago. I was not disappointed in the fleshing out of the story, although I was also not surprised that in parts of the book it felt like it was being padded to fill space.
The book was definitely a quick read, and it was worth going back to after years of first hearing the story.

My rating: 4 of 5 stars
View all my reviews
March 01, 2013
Is Marcus right? (Physics of the Funnies)

Here's another comic that I think could be used to spark discussion in a physics class. Some questions that I would want to elicit from my class:
How long is Marcus watching Jason fall?
What forces are on Jason?
How would we characterize Jason's motion? (constant velocity vs. accelerating)
Then, to go Mythbuster's style on the discussion: is the scenario plausible? Of course, it is a comic strip; it does not have to be plausible. But, if it is not plausible, what conditions would have to be met to get the motion depicted in the comic?
Finally (for this post, at least): is Marcus right in what he says at the end? Would using less helium make a difference?
February 28, 2013
Ancient astronomy
The above image is the first slide that I use to introduce the topic of ancient astronomy in my introductory astronomy course. It's something I put together a few years ago, and although I still sort of like it, I have a hard time remembering exactly what all the thumbnails are supposed to be representing. As best as I can remember, the points I was trying to illustrate when I first put this slide together were:
1.) Many cultures around the world had at least rudimentary knowledge of the night sky, and in many cases had knowledge of astronomical alignments related to the calendar.
2.) We don't have time in class to talk about all of the interesting things that these cultures knew about. There is a LOT of interesting material that we could go into, but in the interest of getting to some modern astronomy topics, we have to pick and choose some ancient astronomy topics and leave the rest mostly untouched. That's not to say that non-Western cultures did not know about or explore the cosmos.
From left to right in the above image, then:
The pyramid is El Castillo, also known as the Temple of Kukulkan located at Chichen Itza (not Chicken Pizza, as my tour guide told me when I went there a few years ago). The temple is aligned such that on the equinoxes the sun casts a shadow over the steps of the pyramids which connects to the heads of serpents carved into the base of the steps. It's a pretty neat effect, and shows the Mesoamericans knew when the equinox would arrive and how to align the structure to accomplish the effect. The Chichen Itza site also has what is thought to be an astronomical observatory on it. The tour I went on did not allow for a very close approach to the building, nor did the guide we have know much about that particular structure.
The middle image is (I THINK) a photo of the ruins of Babylon. I do not believe that the particular image had any astronomical significance. Rather, I think I was trying to point out that many cultures in the middle east (Babylonians, Sumerians, Assyrians) at least attempted to understand the night sky. Clearly, I am not a historian, anthropologist, or archeology expert. I would like to know more about the ancient astronomical knowledge of the middle east.
On the right is a photo of a an armillary sphere at the Purple Mountain Observatory in China. This type of sphere was used by ancient astronomers to measure the position of stars in the night sky. What is not clear from the article that I linked to is whether or not the pictured instrument is an original or a replica. I seem to recall that the armillary sphere at the Purple Mountain Observatory is actually a replica of the ancient instrument. I think that the replica is itself relatively old, but again, it's not clear from the page I linked to.
Maybe in the future I can dig up the original references I was using to piece together this slide. For now, I'm happy with what I have.
1.) Many cultures around the world had at least rudimentary knowledge of the night sky, and in many cases had knowledge of astronomical alignments related to the calendar.
2.) We don't have time in class to talk about all of the interesting things that these cultures knew about. There is a LOT of interesting material that we could go into, but in the interest of getting to some modern astronomy topics, we have to pick and choose some ancient astronomy topics and leave the rest mostly untouched. That's not to say that non-Western cultures did not know about or explore the cosmos.
From left to right in the above image, then:
The pyramid is El Castillo, also known as the Temple of Kukulkan located at Chichen Itza (not Chicken Pizza, as my tour guide told me when I went there a few years ago). The temple is aligned such that on the equinoxes the sun casts a shadow over the steps of the pyramids which connects to the heads of serpents carved into the base of the steps. It's a pretty neat effect, and shows the Mesoamericans knew when the equinox would arrive and how to align the structure to accomplish the effect. The Chichen Itza site also has what is thought to be an astronomical observatory on it. The tour I went on did not allow for a very close approach to the building, nor did the guide we have know much about that particular structure.
The middle image is (I THINK) a photo of the ruins of Babylon. I do not believe that the particular image had any astronomical significance. Rather, I think I was trying to point out that many cultures in the middle east (Babylonians, Sumerians, Assyrians) at least attempted to understand the night sky. Clearly, I am not a historian, anthropologist, or archeology expert. I would like to know more about the ancient astronomical knowledge of the middle east.
On the right is a photo of a an armillary sphere at the Purple Mountain Observatory in China. This type of sphere was used by ancient astronomers to measure the position of stars in the night sky. What is not clear from the article that I linked to is whether or not the pictured instrument is an original or a replica. I seem to recall that the armillary sphere at the Purple Mountain Observatory is actually a replica of the ancient instrument. I think that the replica is itself relatively old, but again, it's not clear from the page I linked to.
Maybe in the future I can dig up the original references I was using to piece together this slide. For now, I'm happy with what I have.
February 27, 2013
Browser clutter - February 2013 edition
This is where I dump some links that I've had in my browser tabs for awhile. I don't want to forget them, but I don't have a better place to put them.
Music inspired by astronomy - from the Astronomy Education Review. I wish the pieces in the article had better links.
Inertia games - We have some REALLY OLD computers at school that we keep mostly to do this for algebra based physics courses. If I could find a port of this to some new platform it might free up some space and time in the labs. (Alternative link)
Love2D - an open framework for making games. Maybe could write an Inertia Games clone in this.
Over the winter break I was able to go to the national AAPT meeting and give a talk on the history of modal analysis. I titled the talk something like "From Chladni to the present, a history of modal analysis". In preparing for the talk, I was surprised to learn about a bunch of pseudoscience that has taken from the work done by legitimate scientists and applied to all sorts of nonsense. At the risk of increasing traffic to their sites, I will point out some of the more laughable crap that I came across:
Harmonic Resonance Theory - weird.
Cymatics history - history of, uh, cymatics (whatever that is) "research".
"How the leopard gets its spots" - In 1988 Scientific American published this article, which may or may not be good science. All I know is that the inference that the modal analysis of a metal plate cut in the rough shape of a animal skin is related to how the patterns of spots appear in the animal's fur is just bizarre to me. (Google search)
--END PSEUDOSCIENCE LINKS--
Making cloud chambers - I've tried this a number of times, and they never quite work for me. :(
More links later!
Music inspired by astronomy - from the Astronomy Education Review. I wish the pieces in the article had better links.
Inertia games - We have some REALLY OLD computers at school that we keep mostly to do this for algebra based physics courses. If I could find a port of this to some new platform it might free up some space and time in the labs. (Alternative link)
Love2D - an open framework for making games. Maybe could write an Inertia Games clone in this.
Over the winter break I was able to go to the national AAPT meeting and give a talk on the history of modal analysis. I titled the talk something like "From Chladni to the present, a history of modal analysis". In preparing for the talk, I was surprised to learn about a bunch of pseudoscience that has taken from the work done by legitimate scientists and applied to all sorts of nonsense. At the risk of increasing traffic to their sites, I will point out some of the more laughable crap that I came across:
Harmonic Resonance Theory - weird.
Cymatics history - history of, uh, cymatics (whatever that is) "research".
"How the leopard gets its spots" - In 1988 Scientific American published this article, which may or may not be good science. All I know is that the inference that the modal analysis of a metal plate cut in the rough shape of a animal skin is related to how the patterns of spots appear in the animal's fur is just bizarre to me. (Google search)
--END PSEUDOSCIENCE LINKS--
Making cloud chambers - I've tried this a number of times, and they never quite work for me. :(
More links later!
February 26, 2013
What can you tell about this scene?
What time does the couple go out for a walk?
What direction are they walking?
More generally, depending on when I use this strip in class, I could ask: What can you tell about this scene? Then, the class can discuss things like the time of day and/or the direction the characters are facing.
February 25, 2013
What, if anything, is wrong with this comic?
![]() |
Image Credit: Creators Syndicate, originally published 5-30-2005 |
So: what, if anything, do you think is wrong with this comic?
February 23, 2013
A few blogs you're probably not reading, but should be
A few weeks ago, Brian Frank posted a link on twitter to a blog about PER that he thought many physics teachers might not know about. I wanted to point out some people that I really like reading that I suspect many people don't know about, either.
Patrick Len posts a lot of questions from his physics and astronomy classes and quizzes over on his blog. Some of the questions are peer-instruction style questions for use in class, but recently he's been posting questions related to current events in astronomy. He also posts a lot of useful materials for activities and demos that can be done in class.
Matthew Francis is a physicist now working as a science writer. I came across his blog, Galileo's Pendulum, when I was tracking down some information about a local science landmark. He writes about a wide swath of science topics, many of which aren't covered by other writers.
Dr. Drang is fairly well known in certain nerd circles. He remains anonymous online because his day job is engineering consulting for lawyers working on cases that may end up in court. He feels that keeping his online presence separate from his day job is the best choice for him. Nevertheless, he often posts really great stuff related to math, engineering and physics.
Patrick Len posts a lot of questions from his physics and astronomy classes and quizzes over on his blog. Some of the questions are peer-instruction style questions for use in class, but recently he's been posting questions related to current events in astronomy. He also posts a lot of useful materials for activities and demos that can be done in class.
Matthew Francis is a physicist now working as a science writer. I came across his blog, Galileo's Pendulum, when I was tracking down some information about a local science landmark. He writes about a wide swath of science topics, many of which aren't covered by other writers.
Dr. Drang is fairly well known in certain nerd circles. He remains anonymous online because his day job is engineering consulting for lawyers working on cases that may end up in court. He feels that keeping his online presence separate from his day job is the best choice for him. Nevertheless, he often posts really great stuff related to math, engineering and physics.
February 06, 2013
Python learning opportunity
I have an honors student this semester who is working on vpython simulations of general physics systems. She knew no programming as of two weeks ago, but tonight was really close to having a projectile motion simulation done.
In trying to put velocity vector components on the projectile's position every 10 time steps, she was running into a problem: using the modulus operator only worked on the first two vectors, then did not.
Here was her code:
The comment tells the story. I guess I should know more about the modulus operator in python. It seems simple to use, but I couldn't really figure out what the problem was initially.
The short version of this story is that my student gets to learn about computer round-off errors and how to debug code by sticking a print command in the code so that she can figure out these problems without too much intervention on my part.
Here's my debug line I ended up using, followed by the fixed if statement:
I'm looking forward to a fun semester of python projects!
In trying to put velocity vector components on the projectile's position every 10 time steps, she was running into a problem: using the modulus operator only worked on the first two vectors, then did not.
Here was her code:
while ball.y >= -2.75 and int_velo > 0:
rate(100)
t = t + dt
ball.pos= ball.pos + ball_velocity*dt
ball_velocity.y = ball_velocity.y - 9.81*dt
if (t*100)%10 == 0: #doesn't work!!!
vel_xvec = arrow(pos=(ball.pos.x,ball.pos.y,0), axis=(int_xvelo,0,0), shaftwidth=0.5)
vel_yvec = arrow(pos=(ball.pos.x,ball.pos.y,0), axis=(0,ball_velocity.y,0), shaftwidth=0.5)
The comment tells the story. I guess I should know more about the modulus operator in python. It seems simple to use, but I couldn't really figure out what the problem was initially.
The short version of this story is that my student gets to learn about computer round-off errors and how to debug code by sticking a print command in the code so that she can figure out these problems without too much intervention on my part.
Here's my debug line I ended up using, followed by the fixed if statement:
print t, t*100, (round(t*100)%10.0)
if (round(t*100)%10) == 0: #works now!!!
I'm looking forward to a fun semester of python projects!
December 05, 2012
Some of my favorite astronomy images
Today was the last day of the semester in astronomy. I showed three of my favorite images of all time as a part of our discussion of cosmology in class. Presented with minimal comment, here they are:
This is the WMAP all-sky image of the cosmic microwave background. The difference in temperature across the entire sky as shown in the above map is less than 400 microKelvin!
The above image is the Hubble Deep Field. This was taken in December 1995 after the Hubble images a patch of the sky that had apparently nothing in it. After 100 hours of exposure time, the assembled photo showed about 3000 distant galaxies. This image has reshaped how we view the universe.
This is an image taken by the Voyager 1 probe. The spot in the photo is what Carl Sagan refers to as the "Pale Blue Dot". It's what the rest of us call Earth.
I've shared this video that a student made for astronomy class before, but it's worth posting here again:
August 22, 2012
Is there value in self-promotion?
I'm trying a small non-scientific experiment tonight that you're a part of.
I've been struggling with the question of the value of linking to my blog posts on twitter. It feels narcissistic to me to post every link on twitter. Isn't anyone who cares about what I've written going to find my stuff in their RSS reader of choice or come back to the blog periodically anyway? If my posts are good, they will get shared on twitter and/or facebook naturally, so I shouldn't have to link to them myself, right?
My primary audience is myself, so I shouldn't have to link to anything. But, I do hope that somethings I say are useful, or else I would not bother to put them online. Plus, I know many people don't use RSS readers, and in lieu of the feed readers prefer to use twitter to discover blog posts.
So, I'm looking for thoughts from my loyal (also smart and attractive; did I mention I don't mind kissing up?) audience. How do you prefer to find out about my blog posts?
Since this is a non-scientific experiment I am conducting, I will do the most non-scientific thing I can think of: state my hypothesis that I am testing. ;) My hypothesis is that my audience is too small (and smart, attractive and polite; there is no adulation I will not give out to you; I have no shame here, only on twitter) to give me any meaningful results of this experiment.
If I'm wrong, though, please feel free to leave me feedback via your preferred channel.
Thanks!
I've been struggling with the question of the value of linking to my blog posts on twitter. It feels narcissistic to me to post every link on twitter. Isn't anyone who cares about what I've written going to find my stuff in their RSS reader of choice or come back to the blog periodically anyway? If my posts are good, they will get shared on twitter and/or facebook naturally, so I shouldn't have to link to them myself, right?
My primary audience is myself, so I shouldn't have to link to anything. But, I do hope that somethings I say are useful, or else I would not bother to put them online. Plus, I know many people don't use RSS readers, and in lieu of the feed readers prefer to use twitter to discover blog posts.
So, I'm looking for thoughts from my loyal (also smart and attractive; did I mention I don't mind kissing up?) audience. How do you prefer to find out about my blog posts?
Since this is a non-scientific experiment I am conducting, I will do the most non-scientific thing I can think of: state my hypothesis that I am testing. ;) My hypothesis is that my audience is too small (and smart, attractive and polite; there is no adulation I will not give out to you; I have no shame here, only on twitter) to give me any meaningful results of this experiment.
If I'm wrong, though, please feel free to leave me feedback via your preferred channel.
Thanks!
Think Like a Physicist - Introduction
The
first time I ever taught an introductory physics course from top to
bottom was as a last-minute summer replacement hire at small liberal
arts college. The schedule was intense: four hours a day every morning
and two hours of lab 2-3 afternoons a week. I know I wasn’t the best
classroom instructor, but we had a pretty decent lab and the students
who took the class and worked hard did make it through, and most
importantly they did learn some physics.
One issue that came up, though, about ⅔ of the way through the summer was that the students confessed that they hated the quizzes and exams I gave them, not because they were terribly hard, but because they felt like they could never guess what I (their instructor) was actually thinking when I wrote the question. At first I felt like my worst fears had been realized: that I had wrote confusing and impossibly hard problems. But after talking with them, I came to realize that the level of the questions had been appropriate, it was just that they were trapped in a way of thinking which led them to believe that if they could figure out what I was thinking, they would be able to figure out the answer to the questions.
My response was that the only thing I was thinking was that if they applied the physics principles which we had discussed in class, no student would have any trouble answering the questions. Clearly, all of the students would breeze through the summer, all of them would earn an A for the course. Of course I was wrong.
I spent much the rest of the course trying to persuade the class that they did not need to be mind readers in order to do well. I’m not sure how many of them actually believed me, but the experienced had a profound effect on my teaching. Ever since then, I’ve tried to do my best to make the physics concepts the central focus of all the classes I teach. It has been a hope of mine that no student would waste any precious study time trying to divine what is going on inside my head.
But, as I looked back at that experience during the summer I first taught physics, I’ve been starting to wonder if maybe there was a lesson that I missed myself. What if the students weren’t so much trying to read my mind, but instead they were trying to think like me? Isn’t that what I wanted? The difference may be subtle, but important, I think. When students are trying to read my mind, they are looking at a problem or question and trying to guess what the professor WANTS them to say. When students are looking at a physics situation and trying to think like their physics professor, they are trying to apply the thought processes and analysis skills of a physicist.
That is exactly what I want from my students. I want them to think like a physicist.
One issue that came up, though, about ⅔ of the way through the summer was that the students confessed that they hated the quizzes and exams I gave them, not because they were terribly hard, but because they felt like they could never guess what I (their instructor) was actually thinking when I wrote the question. At first I felt like my worst fears had been realized: that I had wrote confusing and impossibly hard problems. But after talking with them, I came to realize that the level of the questions had been appropriate, it was just that they were trapped in a way of thinking which led them to believe that if they could figure out what I was thinking, they would be able to figure out the answer to the questions.
My response was that the only thing I was thinking was that if they applied the physics principles which we had discussed in class, no student would have any trouble answering the questions. Clearly, all of the students would breeze through the summer, all of them would earn an A for the course. Of course I was wrong.
I spent much the rest of the course trying to persuade the class that they did not need to be mind readers in order to do well. I’m not sure how many of them actually believed me, but the experienced had a profound effect on my teaching. Ever since then, I’ve tried to do my best to make the physics concepts the central focus of all the classes I teach. It has been a hope of mine that no student would waste any precious study time trying to divine what is going on inside my head.
But, as I looked back at that experience during the summer I first taught physics, I’ve been starting to wonder if maybe there was a lesson that I missed myself. What if the students weren’t so much trying to read my mind, but instead they were trying to think like me? Isn’t that what I wanted? The difference may be subtle, but important, I think. When students are trying to read my mind, they are looking at a problem or question and trying to guess what the professor WANTS them to say. When students are looking at a physics situation and trying to think like their physics professor, they are trying to apply the thought processes and analysis skills of a physicist.
That is exactly what I want from my students. I want them to think like a physicist.
Labels:
active learning,
physics,
secretpublicmanifesto,
teaching
August 21, 2012
First online video assignment (for students to complete)
This assignment will be a little bit different than many of the video assignments I'm going to ask you to do this semester.
I want you to make a video using your hand as the moving object. Let the edge of a table or counter be the straight line along which your hand moves. The center of the table will be the s = 0 position. Positive position numbers will be to the right and negative position numbers will be to the left.
For each of the graphs below, I want you to interpret the position versus time graphs by performing the indicated motion with your hand. As you are executing the motions, explain all the details such as speeding up, slowing down, reversing direction, standing still, moving at constant speed, etc. You should have your hand at the appropriate position at t = 0 and at the end of the time history and be able to explain that, as well.
For each position versus time graph, sketch the corresponding velocity versus time graph and explain why the velocity vs time graph corresponds to the position vs time graph.









(Credit for this homework question goes to Arnold Arons. Credit for screencast/online video assignment goes to Andy Rundquist.)
I want you to make a video using your hand as the moving object. Let the edge of a table or counter be the straight line along which your hand moves. The center of the table will be the s = 0 position. Positive position numbers will be to the right and negative position numbers will be to the left.
For each of the graphs below, I want you to interpret the position versus time graphs by performing the indicated motion with your hand. As you are executing the motions, explain all the details such as speeding up, slowing down, reversing direction, standing still, moving at constant speed, etc. You should have your hand at the appropriate position at t = 0 and at the end of the time history and be able to explain that, as well.
For each position versus time graph, sketch the corresponding velocity versus time graph and explain why the velocity vs time graph corresponds to the position vs time graph.









(Credit for this homework question goes to Arnold Arons. Credit for screencast/online video assignment goes to Andy Rundquist.)
August 14, 2012
A simple genetic drift simulation
Here's the tl;dr version of this post: I wrote a genetic drift simulation that you can download and play with if you want.
When I was in high school, I had a really great teacher for biology. That's not just me saying that; she won awards at the state level honoring her as a great teacher. I don't remember all the topics that we covered in that class, but I do remember that she took me on a tour of the brand new (at the time) microbiology facility at Iowa State University. Besides being a really shiny building, it was the first time I had ever seen biology being done with computers.
Last year when I started teaching at the community college, one of the biology professors said he wanted a genetic drift simulation. He explained what he was looking for, and I nodded politely, only vaguely following along. (That's physics training, for you.) After I read a bit about genetic drift, I found an example of a very simple genetic drift simulation activity. I thought something similar would be doable in python.
Here's the user interface for the simulation:
It is extremely basic. All you do is choose the size of your population and the number of generation that you wish the simulation to run for.
Here is an example of a small population run for 100 generation:
As you can see, this simulation started with the Q (recessive) allele making up 70% of the population. The P allele is quickly wiped out of the population.
Here is a simulation of a much larger population:
For a large population the simulation will start with a much closer match between the P and Q alleles. It was almost 50/50 in this run. And, after 500 generations neither allele has been eliminated, although the Q allele is starting to have a significantly higher fraction of the population.
Here's a snippet of the code that does the actual simulation part. The mechanics of the simulation is explained in the comments:
--
--
I like this because 1.) It quickly shows the difference between genetic drift for large and small populations, and 2.) the simulations start with random conditions and have random progressions, but over a large set of simulations clear patterns emerge. I could envision a class of students running the simulations multiple times each, then compiling the data together into a class set where more conclusions are drawn.
Hopefully my code is expandable. I'd like to add features, such as setting the initial populations, selective processes, and possibly multiple traits.
In case you want to try this (PLEASE TRY IT and give me feedback) you'll need: python, matplotlib, numpy, and Qt runtime libs. Maybe you'll need more, I'm not really sure. I needed coffee when I was working on it. YMMV.
When I was in high school, I had a really great teacher for biology. That's not just me saying that; she won awards at the state level honoring her as a great teacher. I don't remember all the topics that we covered in that class, but I do remember that she took me on a tour of the brand new (at the time) microbiology facility at Iowa State University. Besides being a really shiny building, it was the first time I had ever seen biology being done with computers.
Last year when I started teaching at the community college, one of the biology professors said he wanted a genetic drift simulation. He explained what he was looking for, and I nodded politely, only vaguely following along. (That's physics training, for you.) After I read a bit about genetic drift, I found an example of a very simple genetic drift simulation activity. I thought something similar would be doable in python.
Here's the user interface for the simulation:
It is extremely basic. All you do is choose the size of your population and the number of generation that you wish the simulation to run for.
Here is an example of a small population run for 100 generation:
As you can see, this simulation started with the Q (recessive) allele making up 70% of the population. The P allele is quickly wiped out of the population.
Here is a simulation of a much larger population:
For a large population the simulation will start with a much closer match between the P and Q alleles. It was almost 50/50 in this run. And, after 500 generations neither allele has been eliminated, although the Q allele is starting to have a significantly higher fraction of the population.
Here's a snippet of the code that does the actual simulation part. The mechanics of the simulation is explained in the comments:
--
--
I like this because 1.) It quickly shows the difference between genetic drift for large and small populations, and 2.) the simulations start with random conditions and have random progressions, but over a large set of simulations clear patterns emerge. I could envision a class of students running the simulations multiple times each, then compiling the data together into a class set where more conclusions are drawn.
Hopefully my code is expandable. I'd like to add features, such as setting the initial populations, selective processes, and possibly multiple traits.
In case you want to try this (PLEASE TRY IT and give me feedback) you'll need: python, matplotlib, numpy, and Qt runtime libs. Maybe you'll need more, I'm not really sure. I needed coffee when I was working on it. YMMV.
August 10, 2012
Getting information from students - Fall 2012
Hat tip to my source of many awesome things - a local high school teacher - for this idea. Instead of students filling out an index card of information so I can get to know them, I have them fill out a form which I create in Google Drive. I post the form to the course web page, then point them there. This way, all the information is in a spreadsheet which I can review anytime throughout the semester from anywhere.
I added the question about the smartphone this year to try to get a sense of how much I can try to get get my classes to do interactive things with them.
The form is below...(for now)...it's not the real form, but it is a copy of the one I'll put out on the course page.
-------
I added the question about the smartphone this year to try to get a sense of how much I can try to get get my classes to do interactive things with them.
The form is below...(for now)...it's not the real form, but it is a copy of the one I'll put out on the course page.
-------
Acceleration data of a (hypothetical) airplane
Hypothetically, if one were to be on an airplane in possession of a smartphone with the right app, one could hypothetically gather acceleration data of the planes motion.
I (hypothetically) was on a plane earlier this summer and (hypothetically) had my phone in airplane mode running the data gathering program with the display off until the plane landed and reached the gate.
My phone has a 3-axis accelerometer built into it. The figures below show the orientation of my (hypothetical) data gathering.
I figure that I should (hypothetically) let the data gather for 5 minutes and hope that the landing happens in that time. After starting the data logging app, I turned off the screen and set the phone on the floor by my feet.
Here's the acceleration data:
In the y-direction you can again see setting down and picking up the phone, as well as the (hypothetical) landing event. There is an acceleration in this direction as the plane turns to head towards the gate.
But what we really care about is whether or not this plane is going to stop moving at a high speed in the forward (x) direction. The acceleration data here is interesting! The maximum acceleration is about -3 m/s^2. There are several braking events which happen. Does constant acceleration apply here? Over certain intervals the acceleration is approximately constant, but not over other intervals.
Now I know what the acceleration of a plane landing is (hypothetically) like. Want the raw data? Here you go. Hypothetically, I would like to know what the acceleration of a plane is like on take-off, but I don't have another (hypothetical) plane trip scheduled for awhile.
Always follow the instructions of your flight crew. You don't want to pick that fight. You will lose.
I (hypothetically) was on a plane earlier this summer and (hypothetically) had my phone in airplane mode running the data gathering program with the display off until the plane landed and reached the gate.
My phone has a 3-axis accelerometer built into it. The figures below show the orientation of my (hypothetical) data gathering.
I figure that I should (hypothetically) let the data gather for 5 minutes and hope that the landing happens in that time. After starting the data logging app, I turned off the screen and set the phone on the floor by my feet.
Here's the acceleration data:
In the z-direction, you can see the setting down and picking up of the phone at the start and end of the graph. (Note the full 5 minutes was not used.) The acceleration is fairly constant around -10 m/s^2, due to the gravitational field. What was interesting to me was that the average value before the (hypothetical) touchdown was the same as after touchdown, although definitely not as smooth.
In the y-direction you can again see setting down and picking up the phone, as well as the (hypothetical) landing event. There is an acceleration in this direction as the plane turns to head towards the gate.
But what we really care about is whether or not this plane is going to stop moving at a high speed in the forward (x) direction. The acceleration data here is interesting! The maximum acceleration is about -3 m/s^2. There are several braking events which happen. Does constant acceleration apply here? Over certain intervals the acceleration is approximately constant, but not over other intervals.
Now I know what the acceleration of a plane landing is (hypothetically) like. Want the raw data? Here you go. Hypothetically, I would like to know what the acceleration of a plane is like on take-off, but I don't have another (hypothetical) plane trip scheduled for awhile.
Always follow the instructions of your flight crew. You don't want to pick that fight. You will lose.
More free (libre) physics drawings
Some time ago I posted a bunch of Creative Commons licensed physics drawings that I made for class. I've added several more drawings and posted them as a page here, where I intend to keep adding more of them.
The thumbnails don't really show the full resolution of the drawings. You'll have to open up the files and export the drawings at whatever resolution you need.
I hope these are useful to instructors (or anyone, really) which is why I'm using the CC licence to encourage people to make use of them. Let me know if you find them useful, and if you make improvements to them, please share them with us (that's the ShareAlike part of the licence).
The thumbnails don't really show the full resolution of the drawings. You'll have to open up the files and export the drawings at whatever resolution you need.
I hope these are useful to instructors (or anyone, really) which is why I'm using the CC licence to encourage people to make use of them. Let me know if you find them useful, and if you make improvements to them, please share them with us (that's the ShareAlike part of the licence).
August 09, 2012
One of my summer books

My rating: 3 of 5 stars
This book is a good and easy read. Schwartz clearly knows his science. The overall point he makes about science being a process of uncovering new incremental discoveries is a great idea which cannot be emphasized enough. What left me wanting more, though, was that he rarely described the evidence science has to back up its claims. In an effort to reach the general public, he leaves out the details that makes science what it is: a continual quest for knowledge of how the universe works. I wanted less scientific facts and more description of how we know what we know.
View all my reviews
Get this book on amazon.com
Get this book for your kindle
July 31, 2012
Clearing my browser
Here are some blogs I'm not reading enough:
Teach. Brian. Teach. - Brian Frank is writing quite a bit about how students respond to questions and whether or not they can explain possible misunderstandings that other students might have. He's doing some interesting mining of Khan Academy comments, without watching any of the videos.
Research You Should Know - Raymond Johnson (fellow UNI alum - Go Panthers!) has a long running series where he highlight math education research that is interesting or important. Not all of it is directly relevant to physics teaching, but there is so much good stuff there, it's tough to not get drawn in to it.
Great posts about the physics of music - from the view of a scientist and from the view of a musician. It's neat to see this dialog happen online.
It's Okay to be Smart - This is a relatively popular science link aggregator, but new to me. Some of it is not for me, but I find enough on here that otherwise I would have missed.
Learning About Teaching Physics - An extremely well produced podcast about education research related to teaching physics. I wish they would make more of these!
Enough link dumping for now...
Teach. Brian. Teach. - Brian Frank is writing quite a bit about how students respond to questions and whether or not they can explain possible misunderstandings that other students might have. He's doing some interesting mining of Khan Academy comments, without watching any of the videos.
Research You Should Know - Raymond Johnson (fellow UNI alum - Go Panthers!) has a long running series where he highlight math education research that is interesting or important. Not all of it is directly relevant to physics teaching, but there is so much good stuff there, it's tough to not get drawn in to it.
Great posts about the physics of music - from the view of a scientist and from the view of a musician. It's neat to see this dialog happen online.
It's Okay to be Smart - This is a relatively popular science link aggregator, but new to me. Some of it is not for me, but I find enough on here that otherwise I would have missed.
Learning About Teaching Physics - An extremely well produced podcast about education research related to teaching physics. I wish they would make more of these!
Enough link dumping for now...
July 26, 2012
Break the cycle of Khan Academy criticisms and responses
When I first started interacting online (other than just via email) one of the most valuable lessons I learned was to "not feed the trolls". A troll is a person who posts in order to get a reaction from someone else in the hope of continuing an argument online. The "food" that a troll thrives on is attention.
For the most part, I do pretty well not feeding trolls online. But certain discussions about Khan Academy (KA) inevitably suck me in; I forgo protocol and end up in pointless discussions online trying to argue the points that numerous educators are trying to make about the shortcomings of KA. Since the KA has been used millions of times by (likely) millions of people, there are plenty of people who come to the defense of the KA and all that they do.
The KA defenders typically have a standard litany of responses to any criticisms of the KA. Most of their responses don't actually address the criticism, though. It makes it really hard to have a discussion about how to improve how the KA can reach its mission of providing a free world-class education for anyone anywhere.
The typical responses to KA critics (and my thoughts on them) include:
For the most part, I do pretty well not feeding trolls online. But certain discussions about Khan Academy (KA) inevitably suck me in; I forgo protocol and end up in pointless discussions online trying to argue the points that numerous educators are trying to make about the shortcomings of KA. Since the KA has been used millions of times by (likely) millions of people, there are plenty of people who come to the defense of the KA and all that they do.
The KA defenders typically have a standard litany of responses to any criticisms of the KA. Most of their responses don't actually address the criticism, though. It makes it really hard to have a discussion about how to improve how the KA can reach its mission of providing a free world-class education for anyone anywhere.
The typical responses to KA critics (and my thoughts on them) include:
- The critics are just jealous of Sal Khan and his success.
This, by far, has to be the most ridiculous and possibly most common response. (Haters gonna hate is a subset of this response.) No educator that takes time to write a piece about the work that KA does is any sense jealous of the KA. The critics of KA are passionate about high quality education. They genuinely love the work they are doing. Anyone who loves what they do for a living does not begrudge another person success in doing what they are passionate about doing. Sal Khan is passionate about providing a free world-class education online? Awesome! We are passionate about world-class educations in our classrooms. By the way, we've been teaching these classes for several years (sometimes multiple times a day) and we have the experience of knowing what concepts students struggle with in our classes. We'd like to suggest that the KA consider changing how they approach these topics if they want to reach their goal.
There is no jealousy, only collegiality. - The critics are worried that they are going to be put out of business by KA.
You can easily search the internet to find articles about KA which include claims that some people think that KA threatens the security of teacher jobs. I have yet to meet a teacher or school administrator who actually believes this to be a possibility. Sal Khan himself has said that the goal of KA is not to replace teachers. The argument on the face of it makes no sense. With no teachers, there are no schools. No schools means that every household becomes a de facto homeschool operation. It seems unlikely to me that this would ever happen anywhere in the K-12 environment, let alone college.
- Why don't you go out and make your own set of videos?
Generally speaking, an educator's job is not to make educational videos. Some teachers have, though, mostly for use in their own classes. I have made videos for my classes in the past, and I feel they served a useful purpose for the classes I was using them in. My videos were made for specifically for the classes I was teaching that year, and I would not expect them to be optimized for anyone to watch them and fully learn the material. The KA is attempting to provide video that can be watched by anyone at anytime, so they have a different way of structuring their videos. Some educators believe that the video format is not the correct way to introduce topics to a novice. That is a separate argument that may be worth having some other time. I'm guessing, though, that the KA is not going away anytime soon. Since it has so much traction, why not try to have the KA post the best pedagogical content that can be produced? Video may be imperfect, but it can be made better. - My teacher sucks/sucked. I read the material and went to my teacher and I still didn't understand anything until I watched the KA videos.
Eric Mazur frequently repeats the old chestnut that "the plural of anecdote is not data". So although there are dozens/hundreds/thousands/countless of people who claim that they were the victim of substandard instruction we have no way of knowing if all (or any of them) were truly in a class with a poor teacher. Honestly, we have know way of knowing whether or not learning truly happened just by you reporting that you made it through a particular class with a particular grade. An alternate explanation to their experience was that the struggle which the KA supporter went through was ultimately more useful for the learning of the material. It may be that using all the different methods of trying to learn the material, the student was engaging in deep processing of the concepts, the last step was seeing the KA video. So, it's not specifically the KA video, but the overall process of studying which led to learning. - The videos aren't a replacement for teachers; they are meant to flip the class in order to make class time more interactive. Or they are meant for review and refreshing topics.
The idea that many students would use KA as a review or method to brush up on topics no longer fresh in their minds is not a bad thing at all. But then, let's not hail KA as a revolution in education, okay? Sal Khan is not a trained educator, and while he may be relatively good at explaining his understanding of certain topics, it does not mean that his way of understanding is the best for everyone. He demonstrates knowledge of the content in the videos (mostly he does it acceptably) but often it is at a superficial level. More troubling is that he demonstrates a lack of the pedagogical content knowledge. That is, he lacks the understanding of what it is that makes a topic difficult to understand. Furthermore, the videos are a one-way street. There is no way for him to know if anyone watching the video is truly improving in their conceptual understanding. - The videos are better than sitting in class. You aren't distracted by anything because all you see is the digital blackboard and all you hear is Sal Khan's disembodied soothing voice.
Okay, fair point. Life is filled with lots of distractions. School, no matter what level, is no exception. If what you need to focus on learning is a digital background with a calming voice leading you through the steps, then KA has a place for you. However, there's is so much more to learning and doing science and mathematics (two of the most prominent topics of KA) than just sitting and watching a digital blackboard! The KA, with this limited approach, cannot help you perform experiments, take data, do video analysis, perform simulation, or otherwise engage in the material. (KA may be planning to implement some of these ideas in the future, but they are not there now.) And what stuns me, is the number of KA supporters who claim to be bored by their teachers at school, because all they do is stand in the front and lecture, but they love KA. What's the difference? Just because it is online doesn't mean it isn't the same delivery method. Except, you can't ask Sal Khan to clarify or give an alternative example. Sal Khan doesn't have office hours. - The KA is not only about the videos! It has exercises and metrics and badges!
Not all learning can be quantified by computer-scored exercises. I'm much more interested in what a student knows conceptually, and that tends to require more individualized attention from a teacher. The metrics tools may be useful for tracking students progress through the KA exercises, but since the exercises don't measure the full picture of the learning of my class it doesn't do much for me. As for badges, well I do love a good game. But, what about encouraging learning for its own sake? How can we emphasize the importance of pure curiosity if we reward everything with meaningless badges? - Don't you get it? The KA is for middle school math/freshman high school math/remedial math/high school science/introductory classes/third world countries and NOT for graduate level coursework.
Well, I get it. KA is for anyone at anytime. But that flexibility means everyone at every level can watch any video. Although it is not always explicitly stated, I believe that KA has some vague notion of the target audience for each video that is posted. I don't believe that the fractions videos are intended for college sophomores, nor do I believe the organic chemistry videos are intended for fourth graders. Yet students from both levels are using them. And while much of the content is not intended for advanced levels of study, why should that mean that the presentation should be sub-par? My general education courses that I teach to non-science majors are still legitimate college science classes. I have high standards for myself and for the class. The content is approached differently than I would approach a senior-level course for physics majors, but the standards for the class are still equally high. Why should KA have lower standards? Why should users of KA accept that the videos have mistakes or bad pedagogy in them? They shouldn't. - I'm sick of hearing complaints about KA. KA is great and if you don't like it, don't use it.
Frank Noschese famously posted on his blog "My final remarks about the Khan Academy" and then a few months later, started tweeting more about KA. He's not the only one who has pointed out problems or issues with KA. I hope that fans of the KA would see that the educators pointing out the problems with KA are not out to shut down KA or stop Sal Khan from doing what he does. It's because these teachers care about the quality of education that they take the time to point out the problems. If you love KA, you should want it to be better than it already is. Help us out by encouraging the Khan Academy to engage with the educators who have been reaching out to them.
July 18, 2012
Local musicians - Jonas Friddle and the Majority
I just heard a great group of musicians from Chicago's Old Town School of Folk Music called Jonas Friddle and the Majority. Check them out!
July 02, 2012
Invitation to the Khan Academy
I've been watching the unfolding of Justin Reich and Dan Meyer's "Mystery Teacher Theatre 2000" challenge over the last week or so. Last Friday, Rhett Allain posted his critique of a kinematics video from the Khan Academy. Over the weekend, Sal Khan posted a "correction" to Rhett. Lots of angry comments were posted all over the internet, and we've got the makings for a mini-internet soap opera.
I remember when I first started teaching, hearing all the retired teachers who were still coming to AAPT meetings yammer on about how careful you have to be when choosing words to describe the introductory topics. Mixing up "throw" and "drop" was something I probably did the first two years I taught physics. Other teachers with decades of experience helped me understand how I could be making it harder for students to understand the more challenging topics later by not being as precise early in the year. The more experienced teachers showed me a better way, and I became a better teacher.
I see a lot of what I was doing in my first years of teaching in the Khan Academy videos. Sal's attempt to correct Rhett illustrated (at least to me) that he truly does not have a deep conceptual understanding of the introductory physics material. That's not to say that he is not good at explaining what he does understand. He lacks the depth of conceptual understanding which students NEED for meaningful learning. Of course, the Khan Academy has said that their videos are only a part of a student's learning process. But I don't believe that his videos are optimized for effective learning.
I also don't think that the Khan Academy is going away anytime soon. Since I believe that anyone can improve their abilities, I thought I would provide Sal Khan some feedback in the style of the coaching that I received from the Global Physics Department last year. I chose a series of videos about a topic in astronomy, watched them all, took notes and recorded my feedback. Here's my feedback video:
I hope the Khan Academy is willing to take my feedback and use it to improve their videos. I really do. We need more GOOD resources in this world.
What I hope comes out of the MTT2K competition is that the Khan Academy would engage with the physics education community at a meaningful level. Engagement between educators should be a two-way street, though. I want a dialogue between physics teachers and the Khan Academy. So here is my invitation to Sal Khan:
Sal Khan, you are always welcome to chat online with us in the Global Physics Department meetings on Wednesday nights. Let us know if you're free at 6:30 pm California time on a given Wednesday and we'll set you up. Or, if you don't mind traveling why not come to a meeting of the American Association of Physics Teachers? I won't be in Philadelphia this summer for the AAPT meeting, but I will be in New Orleans (that's your hometown, right?) for the winter meeting. Or, if you'd like to interact at the local section level, I will be hosting a joint meeting of two of the most active sections in the country right outside Chicago in October. Would you be willing to come and talk with physics teachers and physics education researchers face-to-face? I know you run a non-profit, but I bet we could arrange to fly you here and I have a guest bed at home you are welcome to. Let me know!
I remember when I first started teaching, hearing all the retired teachers who were still coming to AAPT meetings yammer on about how careful you have to be when choosing words to describe the introductory topics. Mixing up "throw" and "drop" was something I probably did the first two years I taught physics. Other teachers with decades of experience helped me understand how I could be making it harder for students to understand the more challenging topics later by not being as precise early in the year. The more experienced teachers showed me a better way, and I became a better teacher.
I see a lot of what I was doing in my first years of teaching in the Khan Academy videos. Sal's attempt to correct Rhett illustrated (at least to me) that he truly does not have a deep conceptual understanding of the introductory physics material. That's not to say that he is not good at explaining what he does understand. He lacks the depth of conceptual understanding which students NEED for meaningful learning. Of course, the Khan Academy has said that their videos are only a part of a student's learning process. But I don't believe that his videos are optimized for effective learning.
I also don't think that the Khan Academy is going away anytime soon. Since I believe that anyone can improve their abilities, I thought I would provide Sal Khan some feedback in the style of the coaching that I received from the Global Physics Department last year. I chose a series of videos about a topic in astronomy, watched them all, took notes and recorded my feedback. Here's my feedback video:
I hope the Khan Academy is willing to take my feedback and use it to improve their videos. I really do. We need more GOOD resources in this world.
What I hope comes out of the MTT2K competition is that the Khan Academy would engage with the physics education community at a meaningful level. Engagement between educators should be a two-way street, though. I want a dialogue between physics teachers and the Khan Academy. So here is my invitation to Sal Khan:
Sal Khan, you are always welcome to chat online with us in the Global Physics Department meetings on Wednesday nights. Let us know if you're free at 6:30 pm California time on a given Wednesday and we'll set you up. Or, if you don't mind traveling why not come to a meeting of the American Association of Physics Teachers? I won't be in Philadelphia this summer for the AAPT meeting, but I will be in New Orleans (that's your hometown, right?) for the winter meeting. Or, if you'd like to interact at the local section level, I will be hosting a joint meeting of two of the most active sections in the country right outside Chicago in October. Would you be willing to come and talk with physics teachers and physics education researchers face-to-face? I know you run a non-profit, but I bet we could arrange to fly you here and I have a guest bed at home you are welcome to. Let me know!
June 20, 2012
Fixing corrupt PDFs
This is a note to my future self to remind me that when I need to fix a corrupt pdf file to use ghostscript. The relevant command was:
gs \
-o repaired.pdf \
-sDEVICE=pdfwrite \
-dPDFSETTINGS=/prepress \
corrupted.pdf
April 20, 2012
It's not often that I get what I want...
Apparently there is a journalist out there who is willing to do some investigation:
Since I got what I asked for in my last post, I will soon be drafting a post about how all physics faculty should be given a new car, gratis country club memberships and a new ipad every year for life.
Meanwhile, check out Rhett's videos of the hypothetical car stopping (or not) at the stop sign.
April 19, 2012
More on the braking, sneezing physicist in a car
For some reason, the story of the physicist who used science to get out of a traffic ticket has continued to hold my attention.
In my last post, I made some quick calculations based on the claims implied in the paper. My calculations showed that if the car was slowing down at the claimed rate of 10 m/s2 then the car would have been traveling at least 223 miles per hour at the low end of the range indicated on the graph. A careful reading of the paper reveals that the author does not reveal what speed he was going before inadvertently applying the brakes while sneezing.
I've never really thought much about the observed angular speed of an object passing in front of you at high velocities. I can remember being on train platforms and watching a train approaching in the distance and being amazed at how it appeared to be going slow when it was far away, but as it passed it seemed to be going really fast. I don't find anything wrong with the theory presented in the first part of the paper.
I do have issues with the values of the velocities purported in the paper (as I already mentioned) and the values of the accelerations (as I mentioned in the last post). So, I wanted to see what the author's graphs might look like with more realistic values for velocity and acceleration.
The first graph I made is a graph comparing what the author claimed: constant deceleration of 10 m/s2 for 10 seconds followed by 10 seconds of acceleration at 10 m/s2. Then I made a graph of a car going at a constant velocity of 10 m/s (22 mph) for 9 seconds, slowing down at 10 m/s2, stopping for an instant, speeding up for 1 second at 10 m/s2, and finally continuing on at 10 m/s for another 9 seconds. Here are the two graphs superimposed on each other:
Since my method was sound, I modeled a more realistic scenario for braking and accelerating: First the car approaches at constant speed of 10 m/s. The car brakes at a maximum safe negative acceleration such that it comes to rest at t = 0 s. Immediately the car accelerates at the maximum acceleration for a Toyota Yaris until it reaches a speed of 10 m/s at which point it stops accelerating.
I used a coefficient of friction between the rubber tires and the road of 0.8. With an initial velocity of 10 m/s, I was able to calculate the highest acceleration that would safely bring the car to a stop. I found the acceleration to be 7.8 10 m/s2, which was not far from the estimate of 10 10 m/s2 in the original paper. But the quickest time for a Yaris to go from 0 to 60 miles per hour I could find was 9 seconds. This corresponds to an acceleration of 3 m/s2, which is far less. Combining these parameters into my model and comparing with Krioukov looks like this:
Using more realistic accelerations, the graph looks significantly different than the case presented in the paper.
But, I don't really care about the physics reported in the author's paper. I believe that Krioukov wrote the paper as a harmless April Fool's Day prank (just like the 100 m telescope paper and the magnitude of the Tooth Fairy paper) hoping only to give other physicists and readers of arxiv a good laugh.
But shouldn't news bloggers do a bit more checking first? It seems wrong to just blindly accept whatever a scientist says without even questioning it. That doesn't seem scientific at all. On the other hand, whoever is running the twitter account for AAPT also seemed to be willing to accept that
Do the ends justify the means here? Assuming the paper is a prank, then is it okay that the nonscientific public not realize that it is a farce? I'm a big fan of clever scientific play such as this, so at the end of the day, I don't really care that this stunt was pulled.
What I care about is the issue of how science is being reported to the non-scientists. We should be able to rely on science journalists (and journalists, in general) to do some basic fact-checking to see if the story checks out. The back of the envelope calculations I made for velocities and acceleration don't require anything more than high school physics, so they aren't out of the reach of journalists, yet countless journalists made light of the mathematics used in the paper.
More disturbing to me is I see no evidence that even non-scientific facts were checked. Here are some questions I would be asking if I was a journalist:
I've never really thought much about the observed angular speed of an object passing in front of you at high velocities. I can remember being on train platforms and watching a train approaching in the distance and being amazed at how it appeared to be going slow when it was far away, but as it passed it seemed to be going really fast. I don't find anything wrong with the theory presented in the first part of the paper.
I do have issues with the values of the velocities purported in the paper (as I already mentioned) and the values of the accelerations (as I mentioned in the last post). So, I wanted to see what the author's graphs might look like with more realistic values for velocity and acceleration.
The first graph I made is a graph comparing what the author claimed: constant deceleration of 10 m/s2 for 10 seconds followed by 10 seconds of acceleration at 10 m/s2. Then I made a graph of a car going at a constant velocity of 10 m/s (22 mph) for 9 seconds, slowing down at 10 m/s2, stopping for an instant, speeding up for 1 second at 10 m/s2, and finally continuing on at 10 m/s for another 9 seconds. Here are the two graphs superimposed on each other:
The graphs are remarkably similar, which is at first somewhat surprising, but can easily be explained. Two things that you should note from this graph:
- The observed angular speeds are initially higher for the more realistic case.
- The deceleration portion of the realistic case exactly overlaps the author's model.
Since my method was sound, I modeled a more realistic scenario for braking and accelerating: First the car approaches at constant speed of 10 m/s. The car brakes at a maximum safe negative acceleration such that it comes to rest at t = 0 s. Immediately the car accelerates at the maximum acceleration for a Toyota Yaris until it reaches a speed of 10 m/s at which point it stops accelerating.
I used a coefficient of friction between the rubber tires and the road of 0.8. With an initial velocity of 10 m/s, I was able to calculate the highest acceleration that would safely bring the car to a stop. I found the acceleration to be 7.8 10 m/s2, which was not far from the estimate of 10 10 m/s2 in the original paper. But the quickest time for a Yaris to go from 0 to 60 miles per hour I could find was 9 seconds. This corresponds to an acceleration of 3 m/s2, which is far less. Combining these parameters into my model and comparing with Krioukov looks like this:
But, I don't really care about the physics reported in the author's paper. I believe that Krioukov wrote the paper as a harmless April Fool's Day prank (just like the 100 m telescope paper and the magnitude of the Tooth Fairy paper) hoping only to give other physicists and readers of arxiv a good laugh.
But shouldn't news bloggers do a bit more checking first? It seems wrong to just blindly accept whatever a scientist says without even questioning it. That doesn't seem scientific at all. On the other hand, whoever is running the twitter account for AAPT also seemed to be willing to accept that
@achmorrison While his story may not be totally believable, it definitely makes others think about #physics in a new way.
— AAPT (@physicsteachers) April 17, 2012
Do the ends justify the means here? Assuming the paper is a prank, then is it okay that the nonscientific public not realize that it is a farce? I'm a big fan of clever scientific play such as this, so at the end of the day, I don't really care that this stunt was pulled.
What I care about is the issue of how science is being reported to the non-scientists. We should be able to rely on science journalists (and journalists, in general) to do some basic fact-checking to see if the story checks out. The back of the envelope calculations I made for velocities and acceleration don't require anything more than high school physics, so they aren't out of the reach of journalists, yet countless journalists made light of the mathematics used in the paper.
More disturbing to me is I see no evidence that even non-scientific facts were checked. Here are some questions I would be asking if I was a journalist:
- When was the citation issued? Can I see a copy of it?
- When was the court date? Who was the judge? Can I get a copy of any court records?
- What is the maximum fine (including fees) for running a stop sign in California?
April 16, 2012
Physicist did NOT write mathematical study to get out of traffic ticket
Sometimes, I get obsessed by the silliest little details. For some unknown reason today, the story about the Physicist Using Math to Get Out of Traffic Ticket story was making the rounds on blogs and twitter again. Again? Yes, it first came around a little over two weeks ago: on April 1st. (There's your clue that it is a hoax.)
In the Physics Central write up of the "study" the author is quoted to challenge readers to find the flaws in his argument. I don't want to get into the math right now, since I don't really have the time. But, let's look at whether anything in the paper passes the back-of-the-envelope sanity tests.
1.) His acceleration/deceleration calculations are for constant acceleration of 10 m/s2 (first negative, then positive) over a time range from 10 seconds before approaching the stopsign and 10 seconds after. So, ten seconds before getting to the stop sign he was going 100 m/s? That's 223 miles per hour. Kinda speedy for a Yaris, if you ask me.
2.) His negative acceleration of 10 m/s2 is about the same as the gravitational field constant. If we buy his argument in his paper of his speed being around 18 mph (8 m/s) when suddenly applying the brakes, then his stopping distance would have been 3.2 m, which is about 10 feet. That is right at the line of what we'd expect for a coefficient of friction between the road and tire of 1, which is awfully high, but not completely impossible. It smells funny, but it doesn't fail the sanity check. Although, I'm not sure I'd want to be in the car when braking that quickly.
3.) The positive acceleration matching the negative acceleration in magnitude, though? Completely crazy talk. The best acceleration of a Yaris has a 0-60 mph time of about 9 seconds, which is an acceleration of around 3 m/s2, and well under his estimated acceleration.
So, well played prank, Mr. Krioukov. You've made crazy drivers everywhere think a little bit more about physics, even if you led them a bit astray along the way.
In the Physics Central write up of the "study" the author is quoted to challenge readers to find the flaws in his argument. I don't want to get into the math right now, since I don't really have the time. But, let's look at whether anything in the paper passes the back-of-the-envelope sanity tests.
1.) His acceleration/deceleration calculations are for constant acceleration of 10 m/s2 (first negative, then positive) over a time range from 10 seconds before approaching the stopsign and 10 seconds after. So, ten seconds before getting to the stop sign he was going 100 m/s? That's 223 miles per hour. Kinda speedy for a Yaris, if you ask me.
2.) His negative acceleration of 10 m/s2 is about the same as the gravitational field constant. If we buy his argument in his paper of his speed being around 18 mph (8 m/s) when suddenly applying the brakes, then his stopping distance would have been 3.2 m, which is about 10 feet. That is right at the line of what we'd expect for a coefficient of friction between the road and tire of 1, which is awfully high, but not completely impossible. It smells funny, but it doesn't fail the sanity check. Although, I'm not sure I'd want to be in the car when braking that quickly.
3.) The positive acceleration matching the negative acceleration in magnitude, though? Completely crazy talk. The best acceleration of a Yaris has a 0-60 mph time of about 9 seconds, which is an acceleration of around 3 m/s2, and well under his estimated acceleration.
So, well played prank, Mr. Krioukov. You've made crazy drivers everywhere think a little bit more about physics, even if you led them a bit astray along the way.
March 22, 2012
My student's take on the "Pale Blue Dot"
Every term when I teach astronomy, I give an assignment of an "AstroJournal" which requires, among other things, students to make observations of the moon and read news articles on astronomy and space science. There is a rubric that all the students get so that they will know how they will be graded. In the rubric is a category called "Other" which gives students a chance to put anything in their journal that is related to astronomy or space that does not otherwise fit into a category we've defined for their journal.
It is also, the only place in ANY of my classes where I give something that even resembles "extra credit". Students can get a small amount of bonus points on the AstroJournal by including items in the "Other" category.
One student last semester was really worried that she was going to fail the class (she was by no means in danger of failing at any time, but that's a whole different discussion), so for her "Other" category she made a video that she uploaded to youtube and sent to me.
On the last day of class, student were to turn in their journal. This is when she told me about the video. She explained that she called the video "pale blue dot". I was really surprised, because that was going to be our class discussion of the day. On the last day of class, I have two images that we spend the entire time talking about. One is the Hubble Deep Field and the other is the "Pale Blue Dot" image from the Voyager spacecraft. But this student had taken the initiative to learn about Sagan's "Pale Blue Dot" speech, and put the words with video.
These are the moments that you dream of as a teacher. Enjoy.
March 21, 2012
Violin link roundup
Time for another link dump:
What Really Happened in that Double-Blind Violin Sound Test
Double blind tests – the inside story
Exclusive: how I blind-tested old violins against new
Metafilter discussion of the study
Some of these links are a few weeks (months?) old, but when we're talking about 300 year old violins, does a few weeks really matter? I first heard about this study at the Acoustics Society of America meeting, but it wasn't until after the article came out and made the news that I really thought about it.
What I think is interesting (and great) is that the musicians were really engaged with the study that was done. You can read what three of the 21 musicians have to say about the experiment in the top three links above. I think that these musicians really had a great grasp of what the researchers were trying to accomplish and in telling their story they do an incredible job of reaching out to other musicians to explain what the scientist were trying to study.
What Really Happened in that Double-Blind Violin Sound Test
Double blind tests – the inside story
Exclusive: how I blind-tested old violins against new
Metafilter discussion of the study
Some of these links are a few weeks (months?) old, but when we're talking about 300 year old violins, does a few weeks really matter? I first heard about this study at the Acoustics Society of America meeting, but it wasn't until after the article came out and made the news that I really thought about it.
What I think is interesting (and great) is that the musicians were really engaged with the study that was done. You can read what three of the 21 musicians have to say about the experiment in the top three links above. I think that these musicians really had a great grasp of what the researchers were trying to accomplish and in telling their story they do an incredible job of reaching out to other musicians to explain what the scientist were trying to study.
Subscribe to:
Posts (Atom)