diff options
Diffstat (limited to '1019/CH6/EX6.1/Example_6_1.sce')
-rw-r--r-- | 1019/CH6/EX6.1/Example_6_1.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1019/CH6/EX6.1/Example_6_1.sce b/1019/CH6/EX6.1/Example_6_1.sce new file mode 100644 index 000000000..a69813562 --- /dev/null +++ b/1019/CH6/EX6.1/Example_6_1.sce @@ -0,0 +1,8 @@ +//Example 6.1 +clear; +clc; + +//To calculate the number of ways of distributing distinguishable molecules a,b,c between 3 energy levels +w=(3*2*1)/(1*1*1);//ways of distributing distinguishable molecules a,b,c between 3 energy levels +mprintf('ways of distributing distinguishable molecules a,b,c between 3 energy levels = %i',w); +//end
\ No newline at end of file |