添加slug,改版文章目录命名结构,添加了一个实用的新建文章Shell脚本。

This commit is contained in:
2026-05-28 00:54:34 +08:00
parent 35aa1b3559
commit eb34192fb1
50 changed files with 405 additions and 135 deletions
+24
View File
@@ -0,0 +1,24 @@
+++
date = '2025-12-14T22:57:50+08:00'
draft = false
title = '1 数院人的一天'
tags = ['数学分析']
categories = 'math'
description = '我是数院的,数学再差也是数院的。'
+++
今日习题:来自《数学分析》上册 习题7.2 L'Hôpital法则。
## 题目描述
求极限:$\lim_{x\to0}\frac{x\cot x-1}{x^2}$。
## 解答
\[
\begin{align}
\lim_{x\to0}\frac{x\cot x-1}{x^2}&=\lim_{x\to0}\frac{x\cos x-\sin x}{x^2\sin x}\\
&=\lim_{x\to0}\frac{x\cos x-\sin x}{x^3\frac{\sin x}x}\\
&=\lim_{x\to0}\frac{x\cos x-\sin x}{x^3}\\
&=\lim_{x\to0}\frac{-x\sin x}{3x^2}\\
&=\lim_{x\to0}\frac{-\sin x}{3x}\\
&=-\frac{1}3
\end{align}
\]
## 注
纯用L'Hôpital,不用Taylor展开。