1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
"metadata": {
"name": "",
"signature": "sha256:1d42669bd8107d861c6e3eefe6f0700977fa1e9c23ddda22a03d5e75fa945558"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 10: Electrolyte Solutions"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example Problem 10.2, Page Number 242"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable Declaration\n",
"M = 0.050 #Molarity of NaCl solution and also forNa2SO4 solution, mol/kg\n",
"\n",
"\n",
"#Calculations\n",
"Ia = M*(1+1)/2\n",
"Ib = M*(2+4)/2\n",
"\n",
"#Results\n",
"print 'Ionic streangth for NaCl solution is %4.3f and for Na2SO4 solution is %4.3f, mol/kg'%(Ia,Ib)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Ionic streangth for NaCl solution is 0.050 and for Na2SO4 solution is 0.150, mol/kg\n"
]
}
],
"prompt_number": 1
}
],
"metadata": {}
}
]
}
|