1. Algebra and Functions

Functions And Inverse Functions

Functions and Inverse Functions

Introduction

students, in engineering mathematics, functions are one of the most important ideas you will use to describe how one quantity depends on another πŸ“ˆ. A function helps us turn an input into an output using a clear rule. For example, if a machine changes voltage into current, or if a formula predicts distance from time, that relationship can often be written as a function.

In this lesson, you will learn how to understand the language of functions, how to evaluate and interpret them, and how inverse functions work. By the end, you should be able to explain what makes a relationship a function, find outputs from inputs, and understand how an inverse function β€œundoes” a process πŸ”„.

Learning objectives

  • Explain the main ideas and terminology behind functions and inverse functions.
  • Apply engineering mathematics reasoning to function rules and inverse processes.
  • Connect functions and inverse functions to algebraic manipulation and broader algebra topics.
  • Summarize how functions and inverse functions fit into engineering mathematics.
  • Use examples and evidence to interpret function relationships in real situations.

What is a Function?

A function is a rule that assigns each input exactly one output. We usually write a function as $f(x)$, where $x$ is the input and $f(x)$ is the output. The symbol $f$ is the name of the function, and $x$ is the variable.

For example, suppose

$$f(x)=2x+3$$

If $x=4$, then

$$f(4)=2(4)+3=11$$

So the input $4$ gives the output $11$.

The set of all possible inputs is called the domain. The set of all possible outputs is called the range. These ideas matter in engineering because a formula may only make sense for certain values. For example, if a formula includes division by $x-2$, then $x=2$ is not allowed because division by zero is undefined.

A key test for a function is this: each input must match only one output. If one input could lead to two different outputs, then the rule is not a function. This is why a graph must pass the vertical line test. If any vertical line crosses the graph more than once, one $x$-value is linked to more than one $y$-value, so the graph does not represent a function.

Real-world example

Imagine a vending machine. If you press one button, you expect one item to come out. That is like a function. One input should lead to one output. If one button sometimes gave a drink and sometimes a snack with no rule, it would not be a function 🚫.

Function Notation and Evaluation

Function notation is a compact way to write formulas. Instead of saying β€œthe output of the function when the input is $x$,” we write $f(x)$.

If

$$f(x)=x^2-5x+6$$

then:

  • $f(1)=1^2-5(1)+6=2$
  • $f(2)=2^2-5(2)+6=0$
  • $f(3)=3^2-5(3)+6=0$

This kind of calculation is called evaluating a function.

You may also see functions written in engineering contexts like

$$V(t)=12t$$

where $V(t)$ is voltage as a function of time $t$, or

$$d(v)=0.5v^2$$

where distance depends on speed. The letter inside the brackets tells you the input variable. The expression outside tells you the output.

It is important not to confuse the function name with the variable. In $f(x)$, the $f$ is the function and the $x$ is the input. Writing $f(a)$ means substitute $a$ into the rule.

Common Algebraic Forms of Functions

Many functions in engineering mathematics are built from algebraic expressions such as polynomials, rational expressions, roots, and powers. Algebraic manipulation helps us simplify, rearrange, and interpret these rules.

For example, if

$$g(x)=(x+2)(x-3)$$

then expanding gives

$$g(x)=x^2-x-6$$

Both forms describe the same function. Factored form is useful for finding zeros, because the output is $0$ when one factor is $0$.

For the function above, the zeros are found from

$$x+2=0 \quad \text{or} \quad x-3=0$$

so the zeros are $x=-2$ and $x=3$.

This is very useful in engineering. For example, a model might predict when a signal becomes zero, when a structure reaches a balance point, or when a system changes direction.

What is an Inverse Function?

An inverse function reverses the action of a function. If a function changes $x$ into $y$, then the inverse changes $y$ back into $x$. If $f$ has an inverse, we write it as $f^{-1}$.

If

$$y=f(x)$$

then the inverse satisfies

$$x=f^{-1}(y)$$

A more common way to write the idea is:

$$f^{-1}(f(x))=x$$

and

$$f(f^{-1}(x))=x$$

These equations show that the inverse function undoes the original function.

Important note: the symbol $f^{-1}(x)$ does not mean $\frac{1}{f(x)}$. It means the inverse function, not the reciprocal.

Example of an inverse

Suppose

$$f(x)=2x+3$$

To find the inverse, follow these steps:

  1. Write $y=2x+3$
  2. Swap $x$ and $y$:

$$x=2y+3$$

  1. Solve for $y$:

$$x-3=2y$$

$$y=\frac{x-3}{2}$$

So

$$f^{-1}(x)=\frac{x-3}{2}$$

You can check this by composing the functions:

$$f\left(f^{-1}(x)\right)=2\left(\frac{x-3}{2}\right)+3=x$$

This confirms that the inverse is correct βœ….

When Does an Inverse Exist?

Not every function has an inverse that is also a function over its full domain. For an inverse to be a function, the original function must be one-to-one, meaning different inputs give different outputs.

If two different inputs produce the same output, then the inverse would give one input two outputs, which is not allowed for a function.

For example, consider

$$h(x)=x^2$$

This is not one-to-one on all real numbers because both $x=2$ and $x=-2$ give

$$h(2)=4 \quad \text{and} \quad h(-2)=4$$

So the inverse relation would not be a function unless we restrict the domain. If we limit the domain to $x\ge 0$, then the inverse becomes

$$h^{-1}(x)=\sqrt{x}$$

This shows why domain restrictions matter.

Graphically, a function is one-to-one if it passes the horizontal line test. If any horizontal line crosses the graph more than once, then the function is not one-to-one.

Engineering example

Suppose a sensor converts temperature $T$ into resistance $R$ using a formula. If each temperature produces a unique resistance, then the resistance can be used to recover the temperature. That recovery process is the inverse function 🌑️.

How to Find an Inverse Function

To find the inverse of a function, use an algebraic method:

  1. Write the function as $y=f(x)$.
  2. Swap $x$ and $y$.
  3. Solve for $y$.
  4. Rename the result as $f^{-1}(x)$.

This process is algebraic, so skills like rearranging equations, factoring, and simplifying are essential.

Example

Find the inverse of

$$f(x)=\frac{x-1}{4}$$

Start with

$$y=\frac{x-1}{4}$$

Swap $x$ and $y$:

$$x=\frac{y-1}{4}$$

Multiply both sides by $4$:

$$4x=y-1$$

Add $1$:

$$y=4x+1$$

So

$$f^{-1}(x)=4x+1$$

A quick check:

$$f\left(f^{-1}(x)\right)=\frac{(4x+1)-1}{4}=x$$

This shows the functions undo each other.

Interpreting Functions and Inverses in Engineering

Functions and inverse functions appear everywhere in engineering mathematics because many systems involve input-output relationships.

Examples include:

  • converting between units
  • decoding a measured signal back into the original value
  • turning time into position in motion problems
  • converting electrical input into physical output

For example, if a calibration formula gives output voltage $V$ from temperature $T$ as

$$V(T)=0.02T+1.5$$

then the inverse can be used to find temperature from a measured voltage. Solving for $T$ gives

$$T=50(V-1.5)$$

so

$$V^{-1}(V)=50(V-1.5)$$

In practice, this means a device can be calibrated in one direction and then used in reverse to interpret data.

Understanding inverse functions also helps with checking answers. If you apply a function and then its inverse and do not get back to the starting value, something is wrong in the algebra or in the domain restrictions.

Conclusion

students, functions are rules that assign each input exactly one output, and inverse functions reverse that relationship. In engineering mathematics, these ideas support modelling, solving equations, interpreting graphs, and working with real systems such as sensors, calibration formulas, and conversions πŸ”§.

The main skills are identifying domain and range, evaluating function values, simplifying algebraic expressions, and finding inverses by swapping variables and solving. Knowing when an inverse exists is just as important as finding it, because not every function is one-to-one. Together, functions and inverse functions form a major part of algebra and prepare you for more advanced engineering mathematics topics.

Study Notes

  • A function is a rule where each input has exactly one output.
  • Use $f(x)$ to show the output when the input is $x$.
  • The domain is the set of allowed inputs; the range is the set of possible outputs.
  • A graph of a function passes the vertical line test.
  • An inverse function reverses the effect of the original function.
  • The inverse of $f$ is written as $f^{-1}$, and it is not the same as $\frac{1}{f(x)}$.
  • A function must be one-to-one to have an inverse that is also a function.
  • A graph is one-to-one if it passes the horizontal line test.
  • To find an inverse: write $y=f(x)$, swap $x$ and $y$, then solve for $y$.
  • Checking with $f\left(f^{-1}(x)\right)=x$ is a reliable way to confirm an inverse.
  • Domain restrictions may be needed for some inverses, such as $f(x)=x^2$.
  • Functions and inverse functions are important in engineering for modelling, calibration, and converting between measured and original quantities.

Practice Quiz

5 questions to test your understanding

Functions And Inverse Functions β€” Engineering Mathematics | A-Warded