# Nakafa Framework: LLM
URL: /en/subject/high-school/11/mathematics/function-composition-inverse-function/multiplication-division-function
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/function-composition-inverse-function/multiplication-division-function/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: "Multiplication and Division of Functions",
  description: "Master function multiplication and division: domain rules, zero restrictions, and practical examples. Solve (f·g)(x) and (f/g)(x) with confidence.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "04/27/2025",
  subject: "Function Composition and Inverse Function",
};
## Multiplication of Two Functions
Multiplying two functions,  and , is as easy as multiplying two numbers. We just multiply the result of  by  for the same value of . The result is a new function .
  
        Observe how the lines  and{" "}
         are multiplied to become{" "}
        .
      >
    }
    data={[
      {
        points: Array.from({ length: 11 }, (_, i) => ({
          x: i - 5,
          y: i - 5,
          z: 0,
        })),
        color: getColor("ORANGE"),
        labels: [{ text: "f(x)=x", at: 6, offset: [1, -0.5, 0] }],
      },
      {
        points: Array.from({ length: 11 }, (_, i) => ({ x: i - 5, y: 2, z: 0 })),
        color: getColor("SKY"),
        labels: [{ text: "g(x)=2", at: 8, offset: [1, 0.5, 0] }],
      },
      {
        points: Array.from({ length: 11 }, (_, i) => ({
          x: i - 5,
          y: 2 * (i - 5),
          z: 0,
        })),
        color: getColor("ROSE"),
        labels: [{ text: "(f⋅g)(x)=2x", at: 7, offset: [-1.5, 1, 0] }],
      },
    ]}
  />
  
Just like addition and subtraction, this multiplication machine  can only process raw materials (values of ) that can be processed by _both_ original machines,  and . So, its domain is the intersection of the domain of  and the domain of .
### Example of Multiplication
Let's use slightly different functions this time:
1.  , with domain  (all
    real numbers).
2.  , with domain  (all
    real numbers).
**Step 1: Determine the resulting function from multiplication**
  
  
  
**Step 2: Determine the domain of the resulting function**
We find the intersection of  and :
  
  
  
So, the resulting function from multiplication is  with the domain of all real numbers.
## Division of Two Functions
Dividing function  by function  is also similar: we divide the result of  by . The result is a new function .
Now, there's a **very important additional rule!** We know that division by zero is not allowed. So, besides the value of  needing to be in the domain of both  and , the value of  (the divisor function) **cannot be equal to zero**.
Therefore, the domain of the division function  is the intersection of domains  and , but we must _exclude_ all values of  that cause .
The  sign here means "minus" or "excluded".
### Example of Division
We use the same functions as in the multiplication example:
1.  , 
2.  , 
**Step 1: Determine the resulting function from division**
**Step 2: Determine the domain of the resulting function**
First, find the intersection of  and :
Second, find the value of  that makes :
  
  
  
Third, exclude the value  from the intersection of the domains:
Or it can also be written as:
So, the resulting function from division is  with the domain of all real numbers except .
## Practice Problems
Given the function  with  and function  with .
1.  Determine  and its domain .
2.  Determine  and its domain .
3.  Calculate the value of .
4.  Is  defined? Explain.
### Answer Key
1.  **Finding :**
    
      
      
      
    
    **Finding Domain :**
    
      
      
      
    
    So,  with domain .
2.  **Finding :**
    
    **Finding Domain :**
    Domain intersection: .
    Find  that makes :
    
      
      
      
      
    
    Exclude  and  from the domain intersection:
    
    Or it can be written as:
    
    So,  with domain .
3.  **Calculating :**
    We use the result from number 1: .
    Since ,  is in the domain .
    
      
      
      
      
    
4.  **Is  defined?**
    Undefined. We look at the domain of  from number 2, which is . The value  is explicitly excluded from the domain because it would cause the denominator  to become zero (). Division by zero is not allowed in mathematics.