# Nakafa Framework: LLM URL: /en/subject/high-school/11/mathematics/function-modeling/logarithmic-function-concept Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/function-modeling/logarithmic-function-concept/en.mdx Output docs content for large language models. --- import { getColor } from "@repo/design-system/lib/color"; import { LineEquation } from "@repo/design-system/components/contents/line-equation"; export const metadata = { title: "Logarithmic Function Concept", description: "Master logarithmic functions with graphs, properties, and real-world applications. Learn the inverse of exponentials through examples and practice problems.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "05/18/2025", subject: "Functions and Their Modeling", }; ## What is a Logarithmic Function? Have you ever wondered how long it takes for your investment to double? The answer lies in logarithmic functions! A logarithm is the "inverse" of an exponential. If exponential answers "what is the result?", then logarithm answers "what is the exponent?". Let's start with a simple example. If we have: Question: "What power of 2 gives 8?" The answer is 3. This is what logarithm answers: In general, the relationship between exponential and logarithm: ## Definition and Types of Logarithms A logarithmic function with base (where and ) is expressed as: **Types of logarithms commonly used:** 1. **Common Logarithm** (base 10): Example: because 2. **Natural Logarithm** (base ): Example: because 3. **Binary Logarithm** (base 2): Example: because ## Logarithmic Function Graph Graph is the reflection of{" "} across the line . } data={[ { points: Array.from({ length: 100 }, (_, i) => { const x = (i / 99) * 4 - 1; return { x, y: Math.pow(2, x), z: 0 }; }), color: getColor("SKY"), labels: [{ text: "y = 2^x", at: 80, offset: [1.5, 1, 0] }], showPoints: false, }, { points: Array.from({ length: 100 }, (_, i) => { const x = (i / 99) * 8 + 0.1; return { x, y: Math.log2(x), z: 0 }; }), color: getColor("ROSE"), labels: [{ text: "y = logâ‚‚ x", at: 80, offset: [0.5, -1, 0] }], showPoints: false, }, { points: Array.from({ length: 50 }, (_, i) => { const x = (i / 49) * 4 - 1; return { x, y: x, z: 0 }; }), color: getColor("PURPLE"), labels: [{ text: "y = x", at: 40, offset: [1, 1, 0] }], showPoints: false, }, ]} cameraPosition={[0, 0, 15]} showZAxis={false} /> **Graph characteristics** with : - Domain: (positive numbers only) - Range: All real numbers - x-intercept: - Vertical asymptote: y-axis () - Increasing function for ## Properties of Logarithms ### Basic Properties
### Operational Properties
## COVID-19 Spread Model In the early pandemic, COVID-19 spread in Indonesia could be modeled with an exponential function. If on March 2, 2020 there were 2 cases and in 60 days it reached 10,118 cases, then:
{ const t = i; const P = 2 * Math.exp((1 / 60) * Math.log(5059) * t); return { x: t, y: P, z: 0 }; }), color: getColor("RED"), labels: [{ text: "P(t)", at: 3, offset: [2, -0.5, 0] }], showPoints: false, }, ]} cameraPosition={[15, 10, 15]} showZAxis={false} />
**Using logarithms**, we can calculate when there will be 50,000 cases:
## Exercises 1. Determine the value of: - - - 2. If , determine the value of . 3. Simplify: 4. An investment grows according to the formula (in million rupiah). How many years are needed for the investment to become 8 billion rupiah? ### Answer Key 1. - - - 2. 3. 4. years