Acoustics – Understanding Sounds of Supersonic Objects

acousticsdoppler effectspeed

Would you, as a stationary observer, hear a sound in reverse when the source of the sound travels with twice the speed of sound? Of course, he wouldn't hear anything at all before the airplane passed by and the sound reaches him, but what about after? Does it reverse due to the Doppler effect?

Best Answer

Yes, the sound can be reversed. Thanks to JiK, we have this animation (Python source code) of a supersonic jet moving forwards that can illuminate what is going on:

http://i.imgur.com/izad0kE.gif

The red circle represents the first sound produced by the object, the blue circle the second sound produced by the object and the remaining (black) circles representing the sounds produced elsewhen along the simulation. Two things to look for here:

  1. The generation of the Mach wave (or Mach cone)--this is what produces the sonic boom that the observer first hears (which is actually generated from compression waves made after the first two in this case).
  2. The blue wave clearly hits the stationary observer first, so the sounds played by the moving object would be heard in reverse.

Obviously point #2 is key to OPs question.

However, sound intensity follows an inverse square law: $$ I\propto r^{-2} $$ which means that the larger circles are "quieter" than the smaller circles. Thus, the sounds that you would hear as backwards are muffled in comparison to the normally-directed sounds. So while there is reversed sounds, it would be very unlikely that you would actually distinguish them from the normal-directed sounds.

The image below is a still from a slightly modified version of JiK's code (added an elif (t_i > 7) condition). This shows a bit more clearly the details of the above paragraph, that the normal sounds (in orange and received in the normal direction) would be louder than the reversed sounds (because smaller is louder).

enter image description here

Related Question