Logistic Regression Probability Calculator

Enter log-odds (or build a linear combination from coefficients) to get the predicted probability from a logistic regression model.

Model Inputs

Enter the intercept, then add as many predictors as needed.

Or enter a known log-odds directly

Results

P(Y=1)
Log-odds (logit)
Odds (elog-odds)
Probability P(Y=1)
Probability P(Y=0)

Linear combination

Quick interpretation guide

z = 0P = 0.50 (decision boundary)
z = 2P ≈ 0.88 (strong positive signal)
z = -2P ≈ 0.12 (strong negative signal)
z = 4P ≈ 0.98 (near-certain positive)

Summary

Enter log-odds (or build a linear combination from coefficients) to get the predicted probability from a logistic regression model.

How it works

  1. Enter the intercept and one or more predictor coefficients with their values.
  2. The tool computes the linear combination: log-odds = b0 + b1*x1 + b2*x2 + ...
  3. The sigmoid function converts log-odds to a probability: P = 1 / (1 + e^(-log-odds)).
  4. Read the probability, odds ratio, and log-odds directly from the results panel.
  5. Add or remove predictors dynamically to model any number of variables.

Use cases

  • Verify logistic regression model predictions by hand.
  • Explore how changing a coefficient shifts the predicted probability.
  • Teach the relationship between log-odds, odds, and probability.
  • Quick sanity-check during binary classification model development.
  • Convert a known log-odds score to an interpretable probability.
  • Compare probabilities for different covariate combinations.

Frequently Asked Questions

Last updated: 2026-06-11 · Reviewed by Nham Vu