I would have to ask what content you've provided beyond what is on the Blink page here:
http://arduino.cc/en/tutorial/blink
Teaching beginners to use delay() to time tasks is, IMO, like teaching beginning drivers to use the emergency brake to drive your car.
It is not scalable, everything stops during the delay(), and to do anything more complicated than blink an couple of LEDs, they'll have to relearn and ignore what they just learned.
I really wish they would take that Blink sketch out of the Arduini IDE examples. Almost every book on Arduino programming starts with that, ignores the Blink Without Delay and Debounce examples, and proceeds to use delay() to do the rest of their book.
If I want synchronized LEDs, I can wire up a 555 timer and a 4017. I can even change the timing from LED to LED with the use of some extra parts. But I can't make them blink out of the previous order. This is why I am learning to program, and using delay() can only blink those LEDs in the same order.
On your next example, you said:
V= applied voltage almost 5V minus 0.7 V (approx voltage drop due to diode)
This is incorrect. 0.7V is the voltage across a standard silicon diode. An LED drops more voltage, dependent on the color and construction. Infrared LEDs drop about 1.5V, red about 2V, yellow and amber a bit more, green more than that, etc.
I also notice you are still using delay() to time things.
My suggestion would be to learn how to use other methods of timing events. Study Blink Without Delay and Debounce. Write articles about using those, and take down the articles about Blink.