summaryrefslogtreecommitdiff
path: root/3876/CH9/EX9.9/Ex9_9.sce
blob: 672cc1badc107ade4bae199ab502552a46fe36ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter 9 Ionic Equilibria and Buffer Action

clc;
clear;

//Initialisation of Variables
c= 0.010 //M
Ksp= 1.56*10**-10
M= 108 //gms
C= 10**-3 //M

//CALCULATIONS
K= Ksp/C
m= M*K
m1= M*c

//RESULTS
mprintf("Quantity = %.2e gms",m)
mprintf("\nQuantity = %.2e gms",m1)