background picture of the home page

Hello world!

XiaoSongTongXue

数学求极限总结1

数学求极限总结1 '1' '∞'型(指数): 解题方法:将x=多少带表达式,看看是否出现1和无穷 当函数体里面有明显的1时候 \lim_{x \to ∞}(1+{\frac{a}{x}})^x,可直接化成\lim_{x \to ∞}({\frac{x+a}{x}})^x,直接分母-分母,求出来的系数

thumbnail of the cover of the post

等价无穷小量的使用规范

等价无穷小量的使用规范 补充:泰勒展开 等价无穷小量的概念: 注意函数的加减不能直接等价,例如 \lim_{x \to 0}{\frac{x+sinx}{x}}中不能只将sinx变成x,虽然结果不影响,但是是错误的,你需要证明 x+sinx 等价于x+x,要把上述式子看成整体。 等价失败原因 等价使

thumbnail of the cover of the post

css中元素垂直水平居中方案

元素垂直居中和水平居中方案 水平居中方法: 行内级元素:设置父元素的text-align: center。//当前子元素 块级元素:设置当前块级元素(宽度)margin: 0 auto。//当前元素 绝对定位且元素有宽度情况下:Left/right:0/margin: 0 auto。//当前子元素

thumbnail of the cover of the post

flex布局小总结

flex常见布局样式模型 横向布局: 1.两列式布局(含均分): **效果展示: ** 代码区:   <style>     .box{       width: 500px;       height: 500px;       display: flex;       backgro

thumbnail of the cover of the post

冒泡法总结

方法 适用范围:排大小 经常用到两数交换值的方法 非字符串数组类型 变量的顺序(手拉手)便于快速写出  t=a;a=b;b=t;  ​ 字符串数组  char string[10];  

thumbnail of the cover of the post