function area = areaCutHemisphere(t) % % areaCutHemisphere % % Returns the cross-sectional area of the hemisphere at the given value t. r_2 = 9 - t.^2; area = 0.5*pi*r_2;