• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

A stockholder meeting

radosr

Baruch MFE Faculty
Joined
7/18/07
Messages
659
Points
73
At the stockholder meeting, the board presented the month-by-month profits/losses since the last meeting.
The CEO: "We made a profit over every consecutive 8-month period!"
A shareholder: "Yeah, but we also lost money over every consecutive 5-month period!"
What is the maximum number of months that could have passed since the last meeting?
 
Maximum Number of month is 11.
Proof: Sufficient to prove that 12 months are not possible.
Let an denote the P&l on the nth month.
Then we have
a1+a2+a3+a4+a5 <0
a2+..............<0
..
..
..
a8+a9+a10+a11+a12<0
Now sum of each row is less than zero but sum of every column is positive. Hence can't be true.
Possible sequence for 11 months is
1,-1.6,1,1,-1.6,1,-1.6,1,1,-1.6,1.
 
this is such a classic. it appeared at the IMO many years ago.
 
Maximum Number of month is 11.
Proof: Sufficient to prove that 12 months are not possible.
Let an denote the P&l on the nth month.
Then we have
a1+a2+a3+a4+a5 <0
a2+..............<0
..
..
..
a8+a9+a10+a11+a12<0
Now sum of each row is less than zero but sum of every column is positive. Hence can't be true.
Possible sequence for 11 months is
1,-1.6,1,1,-1.6,1,-1.6,1,1,-1.6,1.
Elegant.
 
Back
Top