Skip to main content

Molarity, Normality, And Relationship in between them

What Is Molarity?
Molarity is the most commonly used measure of concentration. It is expressed as the number of moles of solute per liter
of solution.
For example, a 1 M solution of H2SO4 contains 1 mole of H2SO4 per liter of solution. H2SO4 dissociates into H+ and
SO4- ions in water. For every mole of H2SO4 that dissociates in solution, 2 moles of H+ and 1 mole of SO4- ions are
formed. This is where normality is generally used.
What Is Normality?
Normality is a measure of concentration that is equal to the gram equivalent weight per liter of solution. Gram equivalent
weight is a measure of the reactive capacity of a molecule. The solution's role in the reaction determines the solution's
normality.
For acid reactions, a 1 M H2SO4 solution will have normality (N) of 2 N because 2 moles of H+ ions are present per liter
of solution. For sulfide precipitation reactions, where the SO4- ion is the most significant factor, the same 1 M H2SO4
solution will have a normality of 1 N.
Converting From Molarity to Normality
You can convert from molarity (M) to normality (N) using the following equation:
N = M*n, where n is the number of equivalents
Note that for some chemical species, N and M are the same (n is 1). The conversion only matters when ionization changes
the number of equivalents.

Comments

Popular posts from this blog

Jeeto Pakistan Show Essay

Jeeto Pakistan Jeeto Pakistan is a popular and successful show  world wide. It is on aired twice a weak; on Friday and Sunday 11 month of the year and daily during Ramadan. It was started 4 years ago during Ramadan and it is hosted by Pakistan’s celebrity of showbiz industry Fahad Mustafa. Fahad Mostafa is youngest celebrity of Pakistan and he is hosting this show from the very first day till now. He has also done work in many drama serials and movies, his recent famous movie was Actor in Law. Jeeto Pakistan show is on aired at ARY channel in evening from 19:30 to 22:30. It is totally a commercial show which is sponsored by different companies like Q. Mobilejk , Sogo, Qarshi and many other companies. This show includes many segments and each segment offers different prizes like bikes, cars, gold, ummrah tickets, commercial plots and many other appliances are distributed among people. People are selected for this show by Lucky Draw and one can be selected by doing shopping of ...

Area Calculation By ImageJ

  Area Calculation By ImageJ      Open the Software      File => Open       Zoom in the Image and select the straight line        Mark the small line on graph and go to analyse => set scale      Set known distance 01, unit cm and click ok       Go to free hand and cover the area you want to calculate       Then press (ctrl + m) repeat the process for 3 time       After that go to the result and summarize 

Weight conversion program using functions in c++

#include<iostream> using namespace std; int num(int n) { cout<<"num of chocolate:"; cin>>n; return n; } int ounce(int a) { cout<<"weight in ounce:"; cin>>a; return a; } int pound(int b) { cout<<"weight in pound:"; cin>>b; return b; } int main () { int n, a, b; char choice; cout<<"enter choice 'o' for ounce and 'p' for pounds:"; cin>>choice; int x, y, z; x = num(n); y = ounce(a); z = pound(b); if (choice == 'o') {cout<<"total weight in ounce:"<<x*y;} if (choice == 'p') {cout<<"total weight in pounds:"<<x*z;} return 0; } ************************** Output: