Funds, ETFs & Pooled Vehicles
Level 3 — From-Scratch Derivations & Explain-Out-Loud
Time Limit: 45 minutes
Total Marks: 60
Instructions: Derive all formulas from first principles where asked. Show every step. For "explain-out-loud" prompts, write as if teaching a peer. Use for math.
Q1. [NAV from scratch] (10 marks)
A mutual fund scheme holds the following at end of day:
- Equity holdings market value:
- Cash & receivables:
- Accrued liabilities (fees, payables):
- Total units outstanding:
(a) Derive the NAV-per-unit formula from the definition of net assets, then compute today's NAV. (4)
(b) An investor places a purchase order of . Given an entry mechanism where units are allotted at NAV (no entry load, per SEBI), compute units allotted. (3)
(c) Explain out loud why NAV is struck once per day for open-ended funds but ETFs trade at continuously varying market prices. (3)
Q2. [Expense ratio & tracking error] (12 marks)
(a) Derive an expression for the annual drag on returns caused by an expense ratio , and state why a fund's realized return . (3)
(b) An index returns in a year. Fund A (passive) has expense ratio and additional frictional slippage of . Compute Fund A's expected return and its tracking error contribution from these two costs. (4)
(c) Fund A reported these annual return differences (fund − index) over 5 years (%): . Compute the tracking error (standard deviation of return differences, sample). (5)
Q3. [SIP vs Lumpsum derivation] (12 marks)
(a) Derive the future value formula for a SIP of amount invested at the end of each period for periods at periodic rate . (4)
(b) An investor does a SIP of /month for months at an assumed monthly return of . Compute the future value at the end of month 12. (4)
(c) Explain out loud one scenario where lumpsum outperforms SIP and one where SIP outperforms lumpsum, referencing rupee-cost averaging. (4)
Q4. [Direct vs Regular plans] (10 marks)
A fund's Regular plan has expense ratio ; its Direct plan has .
(a) Explain out loud what causes this gap. (2)
(b) Assuming a gross annual return of compounded annually, derive and compute the terminal value of after years under each plan (net of expense ratio). (5)
(c) Compute the difference in terminal wealth and express it as a % of the Direct plan's terminal value. (3)
Q5. [ELSS + Exit loads] (8 marks)
(a) State the lock-in period of ELSS and explain out loud why exit loads are irrelevant during that period. (3)
(b) A non-ELSS equity fund charges a exit load if redeemed within 1 year. An investor redeems units worth (redemption value) after 8 months. Compute the exit load and the net amount received. (3)
(c) Explain out loud the purpose of exit loads from the fund's perspective. (2)
Q6. [REITs, InvITs & pooled structures] (8 marks)
(a) Explain out loud how a REIT differs from a real-estate mutual fund in terms of underlying assets and income source. (3)
(b) A REIT owns property generating annual distributable cash flow of and has units. It distributes of cash flow (regulatory minimum). Compute distribution per unit and the yield if the unit trades at . (3)
(c) In one line each, contrast a fund-of-funds and a closed-end fund. (2)
Answer keyMark scheme & solutions
Q1
(a) Net Assets Assets Liabilities. NAV Net Assets / Units. (formula 1 mark)
(1)
(2)
(b) Units units. (3 — formula + compute)
(c) Open-ended funds transact only against the fund's underlying portfolio, valued once when markets close → single NAV strike. ETFs are exchange-listed; buyers/sellers trade with each other in real time, so price fluctuates intraday with supply/demand, kept close to iNAV by authorized-participant arbitrage (creation/redemption). (3 — one for open-end mechanism, one for ETF trading, one for AP arbitrage)
Q2
(a) Fees are deducted from fund assets daily, accruing to over a year. Since it directly reduces the fund's asset base, net return small terms for small . (3)
(b) Total cost . (2) Expected return . (1) Tracking-error contribution from cost = (systematic drag). (1)
(c) Differences: mean . (1) Deviations: ; squares: ; sum . (2) Sample variance . (1) Tracking error . (1)
Q3
(a) Each payment compounds for remaining periods. Payment at end of period grows for periods: Geometric series with ratio : (4 — series setup 2, closed form 2)
(b) , , : (1) (3)
(c) Lumpsum outperforms when markets rise steadily from day one (all capital deployed early captures full upside). SIP outperforms in volatile/falling-then-rising markets — rupee-cost averaging buys more units when prices are low, lowering average cost. (4 — 2 each)
Q4
(a) Regular plans embed distributor/broker commission (trail) in the expense ratio; Direct plans are bought straight from the AMC with no commission → lower ratio. (2)
(b) Net return gross expense ratio (approx):
- Regular: →
- Direct: → (formula 1)
→ Regular (2) → Direct (2)
(c) Difference . (2) As % of Direct: . (1)
Q5
(a) ELSS lock-in years (36 months). Units cannot be redeemed during lock-in, so an exit load (which penalizes early redemption) has nothing to apply to. (3)
(b) Redeemed within 1 year → load applies. Load . (2) Net received . (1)
(c) Exit loads discourage short-term churn/redemptions, protecting long-term investors from liquidation costs and stabilizing the fund's assets. (2)
Q6
(a) A REIT directly owns income-producing physical real estate; income comes from rent/lease, and it must distribute ~90% of cash flow. A real-estate MF invests in securities of real-estate companies (equity/debt), earning from those securities rather than owning buildings directly. (3)
(b) Distributable . (1) Per unit . (1) Yield . (1)
(c) FoF: invests in units of other mutual funds (a fund of funds). Closed-end fund: fixed number of units issued at NFO, listed and traded on exchange, no ongoing creation/redemption. (2)
[
{"claim":"Q1 NAV = 25 and units allotted = 6000","code":"net=480000000+25000000-5000000; nav=net/20000000; units=150000/nav; result=(nav==25 and units==6000)"},
{"claim":"Q2c tracking error approx 0.1151%","code":"d=[-0.35,-0.40,-0.30,-0.55,-0.25]; m=sum(d)/len(d); var=sum((x-m)**2 for x in d)/(len(d)-1); te=sqrt(var); result=abs(float(te)-0.11511)<0.001"},
{"claim":"Q3b SIP FV = 126825","code":"P=10000; i=Rational(1,100); n=12; FV=P*(((1+i)**n)-1)/i; result=abs(float(FV)-126825.03)<1"},
{"claim":"Q4 terminal values and 6.18% gap","code":"reg=100000*(1.095**10); dir=100000*(1.102**10); diff=dir-reg; pct=diff/dir*100; result=(abs(reg-247823)<5 and abs(dir-264155)<5 and abs(pct-6.18)<0.05)"},
{"claim":"Q6b per unit 2.70 and yield 0.90%","code":"dist=0.90*90000000; per=dist/30000000; yld=per/300*100; result=(abs(per-2.70)<0.001 and abs(yld-0.90)<0.001)"}
]