# Step 1: Build yield curve (2 credits)
curve = build_yield_curve(...)
# Step 2: Price multiple options (2 credits each)
greeks_portfolio = []
for option in options:
result = price_option(option, curve)
greeks_portfolio.append(result['greeks'])
# Step 3: Aggregate portfolio Greeks
total_delta = sum(g['delta'] for g in greeks_portfolio)