Skip to main content

Lightning Flash

Why does lightning flash ?

During a storm, flashes of lightning followed by thunder, light up the sky like fireworks. It is an impressive and sometimes frightening spectacle. The flash occurs for several reasons. As the air heat and cools, it expands and contracts, and this cause changes in the movement of air and pressure.The water droplets at the top of a cloud have a positive electrical charge, while those at the bottom of a cloud are negatively charged.
   When the clouds are low enough, the negative charge in the water droplets attract a positive charge from the Earth. As a result, electrical energy is released with a flash. This causes the air to be heated tremendously high temperature, which in turn, causes the air to expand suddenly with an explosive noise that we call thunder. Though thunder and lightning occur at the same time, we see lightning first, and then hear thunder, because light travels faster than sound.

Comments

Popular posts from this blog

Complement of a Number

Subtraction of Binary Numbers  ;  Octal and Hexadecimal Number  ;  Convert Decimal to Binary Complements Complements are used in digital computers for simplifying the subtraction operation and for logical manipulations. There are two types of complements for each base-r system: (1) the r’s complement and (2) the (r-1)’s complement. When the value of the base is substituted, the two types receive the names 2’s and 1’s complement for binary numbers,  10’s and 9’s complement for decimal numbers. The r’s Complement Given a positive number N in base r with an integer part of n digits, the r’s complement of N is defined as r n   - N for N is not equal to 0 and 0 for N = 0. The following numerical example will help clarify the definition. The 10’s complement of (52520) 10 is 10 5 – 52520 = 47480 The number of digits in the number is n= 5 The 10’s complement of (0.3267) 10 is 1 – 0.3267 = 0.6733 No integer part, so 10 n = 10 0 = 1 The 10’s...

Rules of divisibility part -1

Rules of divisibility In Vedic mathematics, it can be determined whether any part of any other number can be given completely without dividing it by several methods. These methods are based on the law of divisibility. By using these rules, calculations related to factors, parts etc. are simplified. Law of divisibility by number 2 :- If unit digit of given number is divisible by 2 then the given number is divisible by 2 also.                                                                 or  If unit digit of given number is 0,2,4,6 or 8 , then given number is divisible by 2. Example :- 10 ,32 ,74 ,108 ,2058 etc. Law of divisibility by number 3 :- If the sum of digits of given number is divisible by 3, then the number is divisible by 3 also. Illustration 1:-  In 546532 sum of digits=5+4+6+5+3+2=25 25 is not divisible...

Subtraction of Numbers

Complement of a Number    Octal and Hexadecimal Number    Convert Decimal to Binary Subtraction of numbers by using complement Subtraction with r’s Complements The direct method of subtraction taught in elementary schools uses the borrow concept. In this method, we borrow a 1 from a higher significant position when the minuend digit is smaller than the corresponding subtrahend digit. This seems to be easiest when people perform subtraction with paper and pencil. When subtraction is implemented by means of digital components, this method is found to be less efficient than the method that uses complements and addition as stated below.      The subtraction of two positive numbers (M - N), both of base r, may be done as follows: 1.        Add the minuend M to r’s complement of the subtrahend N. 2.        Inspect the result obtained in step 1 for an end carry: a.  ...