#hw6BrookeLogan.txt Help:=proc(): print(`CheckZ5(N), gT(f, t, z, T)`): end: with(numtheory): ph:=proc(N) local p: sum(log(p), p=1..N): end: CheckZ5:=proc(N) local temp, x: sum(evalf((ph(x)-x)/x^2), x=2..N): end: gT:=proc(f,t,z,T): int(f*exp(-z*t), t=0..T): end: