Logistic Regression: Interpret Probabilities, Odds and Cutoffs in Interviews
A lending app does not simply ask, “Will this customer default?” It asks something sharper: “Is this borrower's default probability low enough that the expected profit still beats the risk?” Logistic regression is the workhorse behind that kind of yes/no decision because it converts business signals into an interpretable probability.
- Logistic regression predicts probability of a binary outcome, such as default/not default, churn/stay, fraud/genuine or convert/not convert.
- It first creates a linear score in log-odds, then passes it through the sigmoid function to keep the output between 0 and 1.
- A coefficient does not directly mean “probability increases by X”; it means the log-odds change by X, holding other variables constant.
- Odds ratio = ecoefficient. If a coefficient is 0.7, odds multiply by about 2.01, not probability by 70%.
- The cutoff converts probability into action: approve above 0.70, flag above 0.30, call above 0.60, depending on business cost.
- Model quality is judged using AUC, precision, recall, F1, log loss and calibration - not accuracy alone.
- The best interview answer links math to business: “probability estimate - threshold - cost trade-off - action.”
Big Picture: Logistic Regression Is a Probability-to-Decision Machine
Think of logistic regression as a funnel. Many customer features enter at the top, the model compresses them into one risk or propensity score, converts that score into a probability, and then the business chooses an action based on a cutoff.
Core Explanation: What Logistic Regression Actually Does
Logistic regression is used when the target variable has two outcomes: 1 or 0. Examples: customer churns or does not churn, borrower defaults or repays, lead converts or does not convert, transaction is fraud or genuine.
The model assumes that the log-odds of the event are a linear combination of inputs:
logit(p) = ln[p / (1 - p)] = β0 + β1x1 + β2x2 + ... + βkxk
Then it applies the sigmoid function to convert that log-odds score into a probability:
p = 1 / [1 + e-z], where z = β0 + β1x1 + β2x2 + ...
The Four Ideas You Must Be Able to Interpret
1. Probability
A probability of 0.82 means: “Given the customer's features, the model estimates an 82% chance of the event coded as 1.” If 1 means churn, 0.82 is high churn risk. If 1 means repayment, 0.82 is good credit quality. Always define what Y = 1 means before interpreting the number.
2. Odds
Odds compare the probability that an event happens with the probability that it does not happen.
Odds = p / (1 - p). If p = 0.80, odds = 0.80 / 0.20 = 4. The event is four times as likely to happen as not happen.
3. Coefficients
A coefficient tells you how much the log-odds change when that input increases by one unit, holding other variables constant. Because log-odds are hard to explain to business users, convert coefficients into odds ratios.
4. Odds Ratios
Odds ratio = eβ. If β = 0.7, the odds ratio is about 2.01. That means a one-unit increase in that variable roughly doubles the odds of the event, all else equal.
Worked Example: From Coefficients to a Business Decision
Suppose an Indian consumer-finance company is predicting whether a customer will default on a small-ticket loan. Here, Y = 1 means default.
The model is:
z = -3.0 + 0.8 × missed_past_payment + 0.6 × high_utilisation
For a customer who has missed a past payment and has high credit utilisation:
- Step 1 - Calculate z: z = -3.0 + 0.8(1) + 0.6(1) = -1.6
- Step 2 - Convert to probability: p = 1 / [1 + e1.6] ≈ 0.168
- Step 3 - Interpret: estimated default probability is about 16.8%.
- Step 4 - Decide: if the lender's risk cutoff is 15%, this applicant may be declined, priced higher or sent for manual review.
The key is not the label alone. A customer at 16.8% and another at 70% may both be classified as “risky,” but the business action should differ.
Thresholds: Where Analytics Becomes Management Judgment
Logistic regression gives a probability. The business chooses the threshold. A 0.5 cutoff is common in textbooks, but often wrong in business because false positives and false negatives rarely cost the same.
For fraud detection, missing a fraud case may be expensive, so the cutoff may be kept low to catch more suspicious transactions. For premium sales outreach, contacting a few low-propensity leads may be cheap, so the cutoff can be broader. For loan approval, the cutoff must balance growth, expected loss, fairness, regulation and customer experience.
Model Metrics: What to Track Beyond Accuracy
Accuracy can mislead when classes are imbalanced. If only 2% of transactions are fraudulent, a dumb model that says “not fraud” for everything is 98% accurate but useless. Use metrics that match the business problem.
For probability interpretation, add one more check: calibration. If 1,000 customers are scored around 0.20, roughly 20% should actually show the event over time. A well-calibrated model is easier to use for pricing, risk provisioning and campaign planning.
Definitions You Should Say Cleanly
- Logistic regression: A supervised classification model that estimates event probability using a linear log-odds equation and sigmoid transformation.
- Odds: The probability an event occurs divided by the probability it does not occur.
- Logit: The natural logarithm of odds, written as ln[p / (1 - p)].
- Odds ratio: The multiplicative change in odds for a one-unit increase in a predictor, holding others constant.
- Threshold: The probability cutoff used to convert a predicted probability into a business class or action.
Case Study: Home Credit and Probability-Based Lending
Home Credit's lending problem shows why probability estimation matters more than a simple approve-reject label, especially for thin-file borrowers.
Situation. Home Credit, a consumer-finance company active across emerging markets including India, serves many customers who may not have deep traditional credit histories. In such lending, the business problem is not merely “good customer or bad customer.” It is: “What is the probability this applicant will repay, and what risk-adjusted decision should we take?”
The move. In a probability-led underwriting setup, a lender can combine application data, repayment history, bureau variables where available, employment signals and transaction behaviour into a default-probability model. Logistic regression is often used as a strong baseline in credit scorecards because it is interpretable: risk teams can explain why a variable increases or decreases odds, compliance teams can review it, and business teams can set cutoffs by product type.
The result or lesson. The primary driver is risk-based probability ranking - applicants are not treated as identical yes/no cases. Supporting drivers include interpretable variables, cutoff governance, monitoring of model drift, and human review for borderline cases. The strategic “so what” is simple: in regulated lending, a transparent probability model can be more useful than a black-box label because it links analytics to risk appetite, pricing and fairness.

This is also why logistic regression remains relevant even when advanced models exist. In credit, insurance, healthcare and regulated marketing, explainability is not a luxury - it is part of the operating model.
How AI Changes Logistic Regression & Interpreting Probabilities
AI has not made logistic regression obsolete. It has changed where logistic regression sits in the analytics stack: often as an interpretable benchmark, a challenger model, or a calibrated layer around more complex systems.
- AI improves feature discovery: Machine learning systems can generate behavioural features from clickstreams, payment histories or support conversations. Logistic regression can then use selected features in a more explainable final model.
- AI raises the bar for probability calibration: Complex models may rank well but output poorly calibrated probabilities. In 2026, teams increasingly compare boosted trees, neural models and logistic regression not only on AUC, but on whether a 0.70 score really behaves like 70% risk.
- AI makes model explanation faster: LLMs can help convert coefficient tables, confusion matrices and threshold trade-offs into business narratives, but the analyst must still verify the math and avoid unsupported causal claims.
Use ChatGPT or Claude to paste a small coefficient table and ask: “Explain these coefficients as odds ratios, identify which variables increase event odds, and suggest a business cutoff if false negatives cost 5 times false positives.” Then manually verify each odds ratio with e^β.
Interview Relevance
“A logistic regression model predicts that a customer has a 0.72 probability of churn. How would you interpret this, and how would you decide whether to target the customer with a retention offer?”
Say one sentence that sounds managerial: “I would not use a universal 0.5 cutoff; I would set the threshold based on expected value and validate it through a holdout or A/B test.”
Common Mistake
The mistake: saying “a coefficient of 0.8 increases probability by 80%.” That is wrong because logistic regression coefficients operate on log-odds, not probability. The fix: convert β into an odds ratio using e^β, then discuss the probability impact only for a specific starting point.
What to Revise Next
After logistic regression, revise Decision Trees, Random Forests & Gradient Boosting to understand more flexible classification models, then study Clustering & Segmentation: Choosing the Number of Clusters to move from supervised prediction to unsupervised customer grouping.