Logarithmic functions are referred to as the inverse of the exponential function. In other words, the functions of the form f(x) = logbx are called logarithmic functions where b represents the base of the logarithm and b > 0. Concept of logarithm in mathematics is used for changing multiplication and division problems to problems of addition and subtraction.
Logarithmic functions can be easily converted into exponential functions and vice versa. The formula for converting the logarithmic functions to exponential function is given by:
ax = p ⇔ x = logap
Example of Logarithmic Functions
Some examples of the logarithmic functions are listed below:
- y(x) = log3 x
- p(y) = log (y + 6) - 5
- z(x) = 5ln x
Common Logarithmic Function
Logarithmic function which contains the logarithm of base 10 is called common logarithmic function. The common logarithm is represented as the log10 or log. The common logarithmic function is of the form
f(x) = log10x
Natural Logarithmic Function
Logarithmic function which contains the logarithm of base e is called common logarithmic function. The common logarithm is represented as the loge or ln. The natural logarithmic function is of the form
f(x) = logex
Domain and Range of Logarithmic Functions
Below we will discuss about the domain and range of the logarithmic functions.
Domain of Logarithmic Functions
Domain of the fundamental logarithmic function i.e., y = log x is all the positive real numbers since the logarithmic function is defined for the positive numbers only i.e., x > 0. To find the domain of the other logarithmic functions put the term with log > 0 and find the value of variable.
Domain of the given logarithmic function is given by (value of variable, ∞).
Domain of log x = All Positive Real Numbers
or
Domain of log x = (0, ∞)
Range of Logarithmic Functions
Range of the logarithmic function is defined by putting the different values of x in the given logarithmic functions. The range of the logarithmic function is set of all real numbers.
Range of Logarithmic function = R (Real Numbers)
In summary:
- Domain of log function y = log x is x > 0 (or) (0, ∞)
- Range of any log function is the set of all real numbers (R)
Logarithmic Function Graph
We know that, logarithmic functions are the inverse of the exponential functions. So, the graph of both the functions are symmetrical about line y = x. Also, the domain of the logarithmic function log x is set of all the positive real numbers and the range is the set of all real numbers.
Logarithmic graph is plotted with the help of domain and range of the logarithmic function. We find the x- intercept of the logarithmic function and plot the logarithmic graph. The y-intercept of the logarithmic graph is not defined. Graph of both logarithmic function and exponential function is added below:
.png)
Properties of Logarithmic Function
The properties of the logarithmic functions help us to solve the logarithmic functions. The several properties of logarithmic functions are listed below:
- logb1 = 0
- logb b = 1
- logb (pq) = logb p + logb q
- logb (p/q) = logb p - logb q
- logb px = x logb p
- logb p = (logc p) / (logc b)
Derivative of Logarithmic Function
The derivative of logarithmic function logex is 1/x. The derivative of the logarithmic function with base 'a' i.e., logax is 1 / (x ln a). The formula for derivatives of logarithmic function is given below.
Integral of Logarithmic Function
Integral of logarithmic function is calculated using the ILATE rule. The value of the integral of the logarithmic functions given below.
- ∫logex dx = x (logex - 1) + C
- ∫log x dx = x (log x - 1) + C
Solved Examples on Logarithmic Functions
Example 1: Evaluate log 20 - log 2
Solution:
Let y = log 20 - log 2
Using formula: logb (p/q) = logb p - logb q
y = log (20/ 2)
y = log 10
Using formula: logb b = 1
y = 1
Example 2: Solve: log927 + 5
Solution:
Let y = log927 + 5
Using formula: logb p = (logc p) / (logc b)
log927 = (log3 27) / (log3 9)
log927 = (log3 33) / (log332)
Using the formula: logb px = x logb p
log927 = 3(log3 3) / 2(log33)
Using formula: logb b = 1
log927 = 3/ 2
Putting above value in y.
y = (3/2) + 5
y = 13/2
Example 3: Find the value of x when log2x + log2(x + 6) = 4.
Solution:
log2x + log2(x + 6) = 4
Using formula: logb (pq) = logb p + logb q
log2 [x (x + 6)] = 4
Using formula: ax = p ⇔ x = logap
[x (x + 6)] = 24
[x (x + 6)] = 16
x2 + 6x - 16 = 0
x = 2 or - 8
Example 4: Find the domain and range of given logarithmic function y = log (6x - 24) + 7.
Solution:
y = log (6x - 24) + 7
To find the domain of the given function put 6x - 24 > 0
6x - 24 > 0
6x > 24
x > 4
Domain of the given logarithmic function = (4, ∞)
We know that,
Range of any logarithmic function is set of all real numbers.
Similar Reads
Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read
Python Variables In Python, variables are used to store data that can be referenced and manipulated during program execution. A variable is essentially a name that is assigned to a value. Unlike many other programming languages, Python variables do not require explicit declaration of type. The type of the variable i
6 min read
Spring Boot Interview Questions and Answers Spring Boot is a Java-based framework used to develop stand-alone, production-ready applications with minimal configuration. Introduced by Pivotal in 2014, it simplifies the development of Spring applications by offering embedded servers, auto-configuration, and fast startup. Many top companies, inc
15+ min read
Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and
9 min read
Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca
7 min read
CTE in SQL In SQL, a Common Table Expression (CTE) is an essential tool for simplifying complex queries and making them more readable. By defining temporary result sets that can be referenced multiple times, a CTE in SQL allows developers to break down complicated logic into manageable parts. CTEs help with hi
6 min read
What is an Operating System? An Operating System is a System software that manages all the resources of the computing device. Acts as an interface between the software and different parts of the computer or the computer hardware. Manages the overall resources and operations of the computer. Controls and monitors the execution o
9 min read
3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power
13 min read