Welcome back from the break! I am your instructor for the first six weeks of FM5032. I will be in town for our first formal session on Sunday, January 23; but I would like to hold a UMConnect session at 5:30 PM on Wenesday, January 19 to discuss the final and provide a preview for the second half. Our TA will host this session in MechE018 Physics (Tate) 131 if you would like to attend in person.
The fall assignment is now available. It is due at the beginning of the session on October 27.
Here is the code I used last night to plot the yield to redemption for a bond with a continuous coupon:
y=@(T,P,c)fzero(@(y)c/y+(1-c/y)*exp(-y*T)-P,c);
fplot(@(T)y(T,1.02,0.04),[1 10])