summaryrefslogtreecommitdiff
path: root/3428/CH15/EX9.15.6/Ex9_15_6.sce
blob: b20573d1262226c79d3f27eb21c550ae1c2a4cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Section-9,Example-2,Page no.-E.9
//To find K_eq for the given reaction.
clc;
E0_Ag=0.80
E0_Cu=0.34
E0=E0_Ag-E0_Cu                  //E0_cell in volt
n=2
F=96500
R=8.314
T=298
K=(n*F*E0)/(R*T)
//K_eq=antilog(K)
K_eq=%e^K
disp(K_eq,'K_eq for the given reaction')
//Answer in the book is wrong.