summaryrefslogtreecommitdiff
path: root/1427/CH5/EX5.33/5_33.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH5/EX5.33/5_33.sce')
-rw-r--r--1427/CH5/EX5.33/5_33.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH5/EX5.33/5_33.sce b/1427/CH5/EX5.33/5_33.sce
new file mode 100644
index 000000000..035ebf360
--- /dev/null
+++ b/1427/CH5/EX5.33/5_33.sce
@@ -0,0 +1,8 @@
+//ques-5.33
+//Finding transport number of silver and nitrate ions
+clc
+x=0.916;
+y=1;
+t1=x/(x+y);//transport number of silver ions
+t2=1-t1;////transport number of nitrate ions
+printf("Transport number of silver and nitrate ions are %.3f and %.3f respectively.",t1,t2);