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: 1000 * 0.60 = 600",
"Initial paid users: 1000 * 0.40 = 400",
"Free users converting to paid: 600 * 0.08 = 48",
"Free users after conversion: 600 - 48 = 552",
"Paid users after conversion (before churn): 400 + 48 = 448",
"Converted users are exempt from churn this month, so churn applies only to original paid users",
"Paid users churning: 400 * 0.04 = 16",
"Paid users after churn: 448 - 16 = 432"
],
"assumptions": [
"No new users join the product during the month",
"Conversion is calculated on the starting free-user base for the month",
"Churn is calculated on the starting paid-user base for the month, excluding newly converted users",
"Conversion happens before churn within the month"
]
}
8/8 checks passed