### Example Problem: Inflection Point Offset Source: https://github.com/raineblog/whk/blob/main/docs/science/function/4.md This section presents an example of using the inflection point offset method to prove an inequality. ```mathematics 例题:已知函数 $f(x)=2\ln x+x^2-1$,若 $x_1,x_2$ 是两个不相等的正数,且 $f(x_1)+f(x_2)=0$,证明 $x_1+x_2>2$。 $$f'(x)=\dfrac{2}{x}+2x\ge4$$ 因此 $f(x)$ 单调递增,且 $f(1)=0$,注意到 $2$ 就是两倍的零点,我们不妨设 $$02$ 的时候,显然 $x_1+x_2>2$。考虑这个部分,即证 $$f(x_2)>f(2-x_1)$$ 又因为 $f(x_2)=-f(x_1)$,因此证 $$-f(x_1)>f(2-x_1)$$ 不妨设 $$g(x)=f(x)+f(2-x)=2\ln(2x-x^2)-2(2x-x^2)+2$$ 其中 $x\in(0,1)$,不妨令 $t=2x-x^2\in(0,1)$,由 $\ln t1$ 时,$g''(x)>0$,$g'(x)$ 单调递增。因此 $1$ 为 $g'(x)$ 的极值点,因此 $01$,因此尝试证明 $$g'(x_2)0$$ 因此 $h(x)$ 单调递增,从而 $h(x)1$,证明 $$\ln t<\sqrt{t}-\dfrac{1}{\sqrt{t}}$$ 即可。 ``` -------------------------------- ### Example 1: Divisibility by 6 Source: https://github.com/raineblog/whk/blob/main/docs/science/number/3.md Demonstrates the use of modular arithmetic to prove that d is divisible by 6, where d = a^1999 + b^1999 + c^1999 and a + b + c = 0. ```mathematics u^1999 === u(mod 2) implies d === a + b + c === 0(mod 2) implies 2|d ``` ```mathematics u^3 === u(mod 3) implies u^1999 === u(mod 3) ``` -------------------------------- ### Example of One-Carbon Growth via Nitrile Hydrolysis Source: https://github.com/raineblog/whk/blob/main/dev/finished/有机拓展.md Example showing one-carbon growth from acetaldehyde to lactic acid. ```latex $CH_3CHO \xrightarrow{HCN} CH_3CH(OH)CN \xrightarrow{水解} CH_3CH(OH)COOH$ ``` -------------------------------- ### 例题 Source: https://github.com/raineblog/whk/blob/main/docs/science/function/3.md 已知 $00$ 且 $ab=a+b+3$,则 $ab,a+b$ 的最小值分别为? 方法一:由 $ab=a+b+3$,得到 $a=\dfrac{b+3}{b-1}$,带入消元即可。 方法二:$ab=a+b+3\ge2\sqrt{ab}+3$,解得 $\sqrt{ab}\ge3$ 即 $ab\ge9$。 方法三:由 $ab-a-b+1=4$ 得 $4=(a-1)(b-1)\le\dfrac14(a+b-2)^2$,则 $a+b\ge6$。 ```markdown ```md {admonition="note" title="例题"} 已知 $a,b>0$ 且 $ab=a+b+3$,则 $ab,a+b$ 的最小值分别为? 方法一:由 $ab=a+b+3$,得到 $a=\dfrac{b+3}{b-1}$,带入消元即可。 方法二:$ab=a+b+3\ge2\sqrt{ab}+3$,解得 $\sqrt{ab}\ge3$ 即 $ab\ge9$。 方法三:由 $ab-a-b+1=4$ 得 $4=(a-1)(b-1)\le\dfrac14(a+b-2)^2$,则 $a+b\ge6$。 ``` ``` -------------------------------- ### Add MkDocs Material and Script Submodules Source: https://github.com/raineblog/whk/blob/main/docs/home/roadmap.md Commands to add MkDocs Material and MkDocs Script as git submodules, and update them. ```shell git submodule add https://github.com/raineblog/mkdocs-material material git submodule add https://github.com/raineblog/mkdocs-script script git submodule add https://github.com/raineblog/intro docs/intro/ git submodule update --remote ``` -------------------------------- ### Sports Narration Examples (Ball Sports) Source: https://github.com/raineblog/whk/blob/main/docs/cultural/writing/3.md Examples of describing actions in ball sports, focusing on coordination and turning points. ```English 球类运动(侧重协调与转折) - 控球与进攻:He gripped the ball tightly, dodged the opponent and made a sudden turn. (他紧紧握球,闪躲对手,突然转身)。 - 关键投射:Sb. took a moment to focus, leaped into the air and shot the ball with precision. (某人专注片刻,跃入空中,精准投球)。 ``` -------------------------------- ### 例题 Source: https://github.com/raineblog/whk/blob/main/docs/science/function/3.md 已知 $a,b>0$ 且 $2a+b=1$,则 $\dfrac1a+\dfrac ab$ 的最小值为? $\dfrac1a+\dfrac ab=\dfrac{2a+b}a+\dfrac{a}{b}=2+\dfrac ab+\dfrac ba\ge4$ ```markdown ```md {admonition="note" title="例题"} 已知 $a,b>0$ 且 $2a+b=1$,则 $\dfrac1a+\dfrac ab$ 的最小值为? $$ \dfrac1a+\dfrac ab=\dfrac{2a+b}a+\dfrac{a}{b}=2+\dfrac ab+\dfrac ba\ge4 $$ ``` ```