Loading cell…
Loading cell…
A SaaS product has 1,000 users.
Question: After one month, how many free users and paid users are expected to remain?
Show the calculation clearly. Do not round intermediate values.
Output format: { "free_users_after_month_1": number, "paid_users_after_month_1": number, "calculation": ["...", "...", "..."], "assumptions": ["..."] }
{ "free_users_after_month_1": 552, "paid_users_after_month_1": 432, "calculation": [ "Initial free users = 1,000 × 60% = 600", "Conversions = 600 × 8% = 48; free users after conversion = 600 − 48 = 552", "Existing paid churn = 400 × 4% = 16; paid users after month 1 = 400 + 48 − 16 = 432" ], "assumptions": [ "Initial paid users = 1,000 − 600 = 400", "The 4% churn rate applies only to users who were already paid at the start of the month", "Converted users cannot churn in the month they convert" ] }
8/8 checks passed