summaryrefslogtreecommitdiff
path: root/3876/CH8/EX8.3/Ex8_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH8/EX8.3/Ex8_3.sce')
-rw-r--r--3876/CH8/EX8.3/Ex8_3.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3876/CH8/EX8.3/Ex8_3.sce b/3876/CH8/EX8.3/Ex8_3.sce
new file mode 100644
index 000000000..150ddf510
--- /dev/null
+++ b/3876/CH8/EX8.3/Ex8_3.sce
@@ -0,0 +1,19 @@
+//Chapter 8 Chemical Equlibrium
+
+clc;
+clear;
+
+//Initialisation of Variables
+k= 1.1*10**-5
+V= 600 //ml
+n= 0.4 //mole
+
+//CALCULATIONS
+m= n*1000/V
+x= (-k+sqrt(k**2+4*4*0.67*k))/(2*4)
+M= 2*x
+P= x*100/m
+
+//RESULTS
+mprintf("Molar concentration of NO2= %.2e mol per litre",M)
+mprintf("\nPer cent dissociation= %.2f percent",P)