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