summaryrefslogtreecommitdiff
path: root/3718/CH12/EX12.1/Ex12_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH12/EX12.1/Ex12_1.sce')
-rw-r--r--3718/CH12/EX12.1/Ex12_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3718/CH12/EX12.1/Ex12_1.sce b/3718/CH12/EX12.1/Ex12_1.sce
new file mode 100644
index 000000000..31fc2df6b
--- /dev/null
+++ b/3718/CH12/EX12.1/Ex12_1.sce
@@ -0,0 +1,11 @@
+//Chapter 12: Polymers and Polymerization
+//Problem: 1
+clc;
+
+//Declaration of Variable
+Mwt = 21150 // in g per mol
+
+// Solution
+m = 2 * 12 + 3 * 1.008 + 1 * 35.45 // g per mer
+n = Mwt / m
+mprintf("The degree of polymerization is %d",n)