summaryrefslogtreecommitdiff
path: root/1427/CH35/EX35.4/35_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH35/EX35.4/35_4.sce')
-rw-r--r--1427/CH35/EX35.4/35_4.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH35/EX35.4/35_4.sce b/1427/CH35/EX35.4/35_4.sce
new file mode 100644
index 000000000..d74985f65
--- /dev/null
+++ b/1427/CH35/EX35.4/35_4.sce
@@ -0,0 +1,7 @@
+//ques-35.4
+//Calculating reduced mass of CN molecule
+clc
+C=12.011;//atomic weight of C (in amu)
+N=14.0067;//atomic weight of N (in amu)
+r_m=(C*N)/((C+N)*6.023*10^23);
+printf("The reduced mass of CN molecule is %.4f*10^-26 kg.",r_m*10^23);