PASS10.0
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 = 60% of 1000 = 600",
"Initial paid users = 40% of 1000 = 400",
"Converted users = 8% of 600 = 48",
"Free users after conversion = 600 - 48 = 552",
"Paid users after conversion = 400 + 48 = 448",
"Churn applies only to original paid users (converted users are exempt this month)",
"Churned users = 4% of 400 = 16",
"Paid users after churn = 448 - 16 = 432"
],
"assumptions": [
"The 4% churn rate applies only to the 400 original paid users, since the 48 newly converted users cannot churn in the same month they convert.",
"No new users join the system, so total user count only decreases due to churn.",
"Conversion is calculated on the starting free user count at the beginning of the month."
]
}
8/8 checks passed