Explicit Function — Definition, Formula & Examples

#Algebra
TL;DR
An explicit function is one where the dependent variable is solved for and written by itself, in the form $y = f(x)$, so you can compute the output straight from the input. This article gives the definition, contrasts explicit with implicit form, works six examples, and names the mistakes students make when converting between the two.
BT
Bhanzu TeamLast updated on July 18, 202610 min read

An explicit function is a function in which the dependent variable is isolated on one side, written as $y = f(x)$, so the output is expressed directly in terms of the input. In $y = 4x - 5$, for example, $y$ stands alone and you can find it for any $x$ by substituting. This is the form you can graph, differentiate, and evaluate without any extra algebra.

What an Explicit Function Is

The word explicit means "stated outright." An explicit function states the output outright: one variable, usually $y$, sits alone on the left, and everything on the right is built only from the input variable $x$. The general shape is:

$y = f(x)$

Here $f(x)$ is any expression in $x$: a polynomial, a root, a trig expression, or a combination. Because $y$ is already isolated, you never have to rearrange anything before plugging in a value.

Contrast this with an implicit function, where the two variables are tangled together in a single relation and neither is solved for, such as $x^2 + y^2 = 25$ or $2x - y - 5 = 0$. Some implicit equations can be rearranged into explicit form; others cannot be solved for $y$ with a single clean expression. Every function you meet is written in one of these two ways, so telling them apart is the first step to knowing what algebra you owe before you can use the rule.

Explicit vs Implicit Functions

The two forms differ in one thing: whether the output already stands alone. The table below lines them up side by side.

Feature

Explicit function

Implicit function

General form

$y = f(x)$

$F(x, y) = 0$

Output variable

Isolated on one side

Tangled with the input

Example

$y = 2x - 5$

$2x - y - 5 = 0$

To get the output

Substitute $x$ directly

Solve for $y$ first

To differentiate

Directly, $\dfrac{dy}{dx} = f'(x)$

Needs implicit differentiation

How to Convert an Implicit Function to Explicit Form

When an implicit equation can be solved for the output, four steps get you there.

Collect every term that contains $y$ on one side.

Factor $y$ out if it appears in more than one term.

Divide so that $y$ stands alone.

State any restriction the division introduces.

For example, start from the implicit equation $3x + 2y = 12$.

Move the input term to the right.

$2y = 12 - 3x$

Divide both sides by 2.

$y = \dfrac{12 - 3x}{2}$

The output is now isolated, so the equation is explicit.

Properties of Explicit Functions

A few features follow directly from having the output isolated.

  • Direct evaluation: substitute an input and read the output in a single step, with no rearranging.

  • One output per input: a genuine explicit function assigns exactly one value of $y$ to each $x$, so its graph passes the vertical line test.

  • Ready to differentiate and integrate: because $y$ is already written in terms of $x$, you can apply the rules of calculus straight away.

  • Not always available: some relations give two outputs per input, such as $x^2 + y^2 = 25$, and some cannot be solved for $y$ with elementary functions at all, such as $\sin(xy) = x$. These stay implicit, and that is when implicit differentiation earns its place.

Examples of Explicit Functions

Example 1

Is $y = 3x + 2$ an explicit function?

$y$ is alone on the left.

The right side, $3x + 2$, uses only the input $x$.

So the output is stated directly in terms of the input.

Yes. $y = 3x + 2$ is explicit, and $f(x) = 3x + 2$.

Example 2

Evaluate the explicit function $y = x^2 - x + 3$ at $x = 4$.

Substitute $x = 4$ into the isolated expression.

$y = (4)^2 - (4) + 3$

$y = 16 - 4 + 3$

$y = 15$

Because the function is explicit, one substitution gives the output with no rearranging.

Answer: $y = 15$ when $x = 4$.

Example 3

Convert $2x - y - 5 = 0$ to explicit form.

First instinct: read $2x - y - 5 = 0$ as already done, and call it $f(x) = 2x - y - 5$.

That fails, because the "output" $f(x)$ still contains $y$, and a rule for $y$ cannot mention $y$ on the right. It is circular.

The rescue is to solve for $y$. Add $y$ to both sides:

$2x - 5 = y$

$y = 2x - 5$

Now $y$ is isolated and the right side is built only from $x$.

Answer: the explicit form is $y = 2x - 5$.

Example 4

Write the explicit function whose graph is a line with slope 3 through the point $(0, -1)$.

A line with slope $m$ and $y$-intercept $b$ is $y = mx + b$.

Here $m = 3$ and $b = -1$.

$y = 3x - 1$

Answer: $y = 3x - 1$, an explicit function.

Example 5

Rearrange the implicit equation $xy - y = 1$ into explicit form.

Factor $y$ out of the left side.

$y(x - 1) = 1$

Divide both sides by $(x - 1)$, valid when $x \ne 1$.

$y = \dfrac{1}{x - 1}$

Answer: $y = \dfrac{1}{x - 1}$, explicit for all $x \ne 1$.

Example 6

Explain why $x^2 + y^2 = 25$ cannot be written as a single explicit function.

Solve for $y$.

$y^2 = 25 - x^2$

$y = \pm\sqrt{25 - x^2}$

The $\pm$ gives two outputs for most inputs, so this is not one function; it needs to be split into $y = \sqrt{25 - x^2}$ and $y = -\sqrt{25 - x^2}$.

Answer: the full circle is a relation, not a single explicit function; each half is a separate explicit function.

Why "Solved for y" Was Worth a Name

Before calculus, mathematicians wrote relationships between quantities in whatever form nature handed them — often as balance equations where neither quantity was singled out. The distinction between explicit and implicit earned its own vocabulary because differentiation forced the question: to find a rate of change $\dfrac{dy}{dx}$, you need to know how the output depends on the input, and that is easiest when the output is already isolated.

Here is where the two forms take you:

  • Explicit form lets you evaluate, graph, and differentiate directly — substitute and go.

  • Implicit form is what you fall back on when solving for $y$ is impossible or ugly, and it is the reason implicit differentiation exists as a technique.

  • The choice is strategic: an equation like $x^2 + y^2 = 25$ is far cleaner left implicit than forced into two square-root halves.

That is the destination — not just labelling equations, but knowing which form makes the next step (evaluate, graph, or differentiate) least painful. The types of functions you meet later — linear, quadratic, logarithmic, and the rest — are almost always introduced in explicit form for exactly this reason. You can read more about how the U.S. Department of Education frames function notation in its common-core mathematics standards.

Common Mistakes with Explicit Functions

Mistake 1: Calling an equation explicit while the output still appears on the right

Where it slips in: rushing to relabel $2x - y - 5 = 0$ as $f(x) = 2x - y - 5$ without solving.

Don't do this: leave $y$ sitting on the right side of the "rule." A student who rushes reads any rearranged equation as "done" the moment it has an equals sign.

The correct way: isolate $y$ fully, giving $y = 2x - 5$, so the right side names only the input.

Mistake 2: Assuming every implicit equation converts to one explicit function

Where it slips in: meeting $x^2 + y^2 = 25$ and forcing a single $y = \ldots$ answer.

Don't do this: write $y = \sqrt{25 - x^2}$ and call the whole circle explicit. The second-guesser drops the $\pm$ because one answer feels safer than two.

The correct way: keep the $\pm$, recognise the relation gives two outputs per input, and split it into two explicit functions if you need them separately.

Mistake 3: Dropping the domain restriction after dividing

Where it slips in: rearranging $xy - y = 1$ to $y = \dfrac{1}{x-1}$ and forgetting where it breaks.

Don't do this: treat the explicit form as valid for every $x$. The memorizer keeps the formula but loses the condition that made the division legal.

The correct way: state $x \ne 1$, because dividing by $x - 1$ is only allowed when it is non-zero.

This mirrors a real-world slip: dividing by a quantity that can be zero is exactly the error behind many spreadsheet #DIV/0! failures, where a formula that looks explicit and complete quietly breaks the moment its denominator hits zero.

Key Takeaways

  • An explicit function isolates the output: $y = f(x)$, with the right side built only from the input $x$.

  • Implicit form mixes both variables in one relation, such as $x^2 + y^2 = 25$, with neither variable solved for.

  • Converting implicit to explicit means solving for $y$, and keeping any domain restriction the algebra introduces.

  • Some implicit equations give two outputs per input and cannot be a single explicit function; each branch becomes its own explicit function.

  • Explicit form is the one you can evaluate, graph, and differentiate directly.

Practice Questions

Try these, then check the answers below.

  1. Rewrite $5x - y = 8$ in explicit form.

  2. Convert $xy + 3y = 6$ to explicit form and state the restriction.

  3. Is $y^2 = x + 1$ a single explicit function? Explain.

  4. Evaluate the explicit function $y = 2x^2 - 3x + 1$ at $x = -2$.

  5. Which is easier to differentiate directly, $y = x^3 - 4x$ or $x^3 + y^3 = 9$, and why?

Answers

  1. $y = 5x - 8$.

  2. Factor to $y(x + 3) = 6$, so $y = \dfrac{6}{x + 3}$, valid for $x \ne -3$.

  3. No. Solving gives $y = \pm\sqrt{x + 1}$, two outputs per input, so it splits into two separate explicit functions.

  4. $y = 2(-2)^2 - 3(-2) + 1 = 8 + 6 + 1 = 15$.

  5. $y = x^3 - 4x$, because it is already explicit and differentiates term by term; the other is implicit and needs implicit differentiation.

A Practical Next Step

Work through these to solidify your understanding: rewrite $3y + 1 = 2x$ in explicit form, decide whether $y^2 = x$ can be a single explicit function, and evaluate $y = x^2 + 1$ at $x = -3$. If you get stuck deciding whether an equation is a function at all, come back to the idea that each input may have only one output, then check it with the vertical line test.

To take functions further with a teacher, explore Bhanzu's algebra tutor, our help with algebra sessions, or math classes online. Want your child to build this the way it is used in calculus, with a live Bhanzu trainer? Book a free demo class.

Read More

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is an explicit function in simple terms?
A function where you have already solved for the output, written as $y = f(x)$, so you can compute $y$ straight from $x$ without rearranging.
How do you identify an explicit function?
Check that one variable is alone on one side and the other side contains only the input variable. If $y$ appears on both sides, it is not yet explicit.
What is the difference between explicit and implicit functions?
An explicit function isolates the output ($y = 2x - 5$); an implicit function leaves both variables tangled in one relation ($2x - y - 5 = 0$ or $x^2 + y^2 = 25$).
Can every implicit function be made explicit?
No. Some can be solved for $y$ cleanly, but others give two or more outputs per input, or cannot be solved for $y$ with elementary functions at all.
Is $y = x^2$ an explicit function?
Yes. The output $y$ is isolated and the right side uses only the input $x$, so $y = x^2$ is explicit.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →