blob: f31642d9913760eaff71445fa51aefdef20a8934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter 6: Electrochemistry
//Problem: 14
clc;
//Declaration of Variables
T = 25 // C
Eo = - 0.8277 // V
// Solution
mprintf("The reversible reaction,\n")
mprintf(" 2H2O <--> H3O+ + OH-\n")
mprintf(" May be divided into two parts.\n")
mprintf(" 2H2O + e- --> 1/2 H2 + OH- (cathode) Eo = -0.8277 V\n")
mprintf(" H2O + 1/2 H2 --> H3O+ + e- (anode) Eo = 0")
|