Skip to content

Update README.md #1299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 39 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,46 @@ This result is obtained because after canceling the common factor, we are left w

$$lim_{{\Large \to 1}} \frac{{x^2 - 4x + 3}}{{x - 1}}$$n

<br>

```latex
\[
\lim_{{x \to 1}} \frac{{x^2 - 4x + 3}}{{x - 1}}
\]
```
This will render as:

$$
\lim_{{x \to 1}} \frac{{x^2 - 4x + 3}}{{x - 1}}
$$

[Solution](0

To solve the limit, we can factor the numerator:
$$
x^2 - 4x + 3 = (x - 1)(x - 3)
$$

So the limit becomes:
$$
\lim_{{x \to 1}} \frac{{(x - 1)(x - 3)}}{{x - 1}}
$$

We can cancel out the \((x - 1)\) terms:
$$
\lim_{{x \to 1}} (x - 3)
$$

Now, we can directly substitute \( x = 1 \):
$$
1 - 3 = -2
$$

Therefore, the limit is:
$$
\lim_{{x \to 1}} \frac{{x^2 - 4x + 3}}{{x - 1}} = -2
$$

#

### 1d) **Limit Expression:**


Expand Down