blob: 6cf77ec5b15f776af5189da8121940f4706252c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 1: Structure and Bonding
//Problem: 14
clc;
//Declaration of Constant
t_v = 1.3 * 10 ** 15 // Threshold freq. Pt, /sec
h = 6.626 * 10 ** -34 // Planck's constant, J.sec
// Solution
mprintf("The threshold frequency is the lowest frequency that photons may possess to produce the photoelectric effect.\n")
E = h * t_v
mprintf(" The energy corresponding to this frequency is the minimum energy = %.2e erg",E)
|