当前位置: 首页 > news >正文

石家庄企业商城版网站建设市场调研报告800字

石家庄企业商城版网站建设,市场调研报告800字,徐州网站制作方法,wordpress logo 太小【高数:3 无穷小与无穷大】 1 无穷小与无穷大2 极限运算法则3 极限存在原则4 趋于无穷小的比较 参考书籍:毕文斌, 毛悦悦. Python漫游数学王国[M]. 北京:清华大学出版社,2022. 1 无穷小与无穷大 无穷大在sympy中用两个字母o表示无…

【高数:3 无穷小与无穷大】

  • 1 无穷小与无穷大
  • 2 极限运算法则
  • 3 极限存在原则
  • 4 趋于无穷小的比较

参考书籍:毕文斌, 毛悦悦. Python漫游数学王国[M]. 北京:清华大学出版社,2022.

1 无穷小与无穷大

无穷大在sympy中用两个字母o表示无穷大,正无穷大为sy.oo,负无穷大为-sy.oo

import sympy as sy
x=sy.oo
print(1/x)
>>>0

lim ⁡ x → 0 − 1 x \lim_{x \to 0^-} \frac{1}{x} limx0x1

x=sy.symbols('x')
print(sy.limit(1/x,x,0,dir='-'))
>>>-oo

2 极限运算法则

lim ⁡ x → 3 x − 3 x 2 − 9 \lim_{x \to 3} \frac{x-3}{x^2-9} limx3x29x3

import sympy as sy
x=sy.symbols('x')
print(sy.limit((x-3)/(x**2-9),x,3,dir='+-'))

lim ⁡ x → 1 2 x − 3 x 2 − 5 x + 4 \lim_{x \to 1} \frac{2x-3}{x^2-5x+4} limx1x25x+42x3

x=sy.symbols('x')
print(sy.limit((2*x-3)/(x**2-5*x+4),x,1,dir='-'))
print(sy.limit((2*x-3)/(x**2-5*x+4),x,1))
>>>-oo, oo 故趋于无穷时极限为无穷oo

lim ⁡ x → ∞ 3 x 3 + 4 X 2 + 2 7 x 3 + 5 x 2 − 3 \lim_{x \to \infty} \frac{3x^3+4X^2+2}{7x^3+5x^2-3} limx7x3+5x233x3+4X2+2

x=sy.symbols('x')
print(sy.limit((3*x**3+4*x**2+2)/(7*x**3+5*x**2-3),x,sy.oo,dir='-'))
print(sy.limit((3*x**3+4*x**2+2)/(7*x**3+5*x**2-3),x,-sy.oo,dir='+'))
>>>3/7,3/7 故趋于无穷时极限为3/7

当分子分母极限都不存在时, lim ⁡ x → ∞ sin ⁡ x x \lim_{x \to \infty} \frac{\sin x}{x} limxxsinx

x=sy.symbols('x')
y=sy.sin(x)/x
print(sy.limit(y,x,sy.oo,dir='+'))
print(sy.limit(y,x,-sy.oo,dir='+'))
>>>0 , 0 故趋于无穷时极限为0

3 极限存在原则

eg1: lim ⁡ x → 0 sin ⁡ x x \lim_{x \to 0} \frac{\sin x}{x} limx0xsinx

import sympy as sy
x=sy.symbols('x')
lim=sy.limit(sy.sin(x)/x,x,0,dir='+-')
print(lim)
>>>1

eg2: lim ⁡ x → 0 arcsin ⁡ x tan ⁡ x \lim_{x \to 0} \frac{\arcsin x}{\tan x} limx0tanxarcsinx

x=sy.symbols('x')
print(sy.limit(sy.asin(x)/sy.tan(x),x,0,dir='+-'))  #sy.asin()指arcsin函数
>>>1

eg3: lim ⁡ x → 0 1 − cos ⁡ x x 2 \lim_{x \to 0} \frac{1- \cos x}{x^2} limx0x21cosx

x=sy.symbols('x')
print(sy.limit((1-sy.cos(x))/(x**2),x,0,dir='+-'))
>>>1/2

eg4: lim ⁡ x → 0 ( 1 + x ) 1 x \lim_{x \to 0} (1+x)^{\frac{1}{x}} limx0(1+x)x1

x=sy.symbols('x')
lim=sy.limit((1+x)**(1/x),x,0,dir='+-')
print(lim)
>>>E

eg5: lim ⁡ x → ∞ ( 1 + 1 x ) x \lim_{x \to \infty} (1+\frac{1}{x})^x limx(1+x1)x

x=sy.symbols('x')
lim=sy.limit((1+1/x)**x,x,sy.oo,dir='-')
print(lim)
print(lim.round(3))
print(sy.limit((1+1/x)**x,x,-sy.oo))
>>>E, 2.718, E

eg6: 说明数列 2 , 2 + 2 , 2 + 2 + 2 \sqrt{2} , \sqrt{2+\sqrt{2}},\sqrt{2+\sqrt{2+\sqrt{2}}} 2 ,2+2 ,2+2+2 ,···的极限存在

#用函数的递归机制定义数列
def a_complex_series(n):#退出条件if n<=0:return 2**0.5#一个函数如果调用自身,则这个函数就是一个递归函数return (2.0+a_complex_series(n-1))**0.5
#绘制前20个数的散点图
import matplotlib.pyplot as plt
import numpy as np
x=[]
y=[]
for i in range(20):x.append(i)y.append(a_complex_series(i))
print(np.array(y))
plt.scatter(x,y)
plt.show()
>>>[1.41421356 1.84775907 1.96157056 1.99036945 1.99759091 1.99939764
1.9998494  1.99996235 1.99999059 1.99999765 1.99999941 1.999999851.99999996 1.99999999 2.         2.         2.         2.
2.         2.        ]

在这里插入图片描述
故极限为2

4 趋于无穷小的比较

eg1: lim ⁡ x → 0 tan ⁡ 2 x sin ⁡ 5 x \lim_{x \to 0} \frac{\tan 2x}{\sin 5x} limx0sin5xtan2x

from sympy import limit,sin,cos,tan,symbols #从sympy中仅导入这几个函数
x=symbols('x')
example_1=tan(2*x)/sin(5*x)
result=limit(example_1,x,0,dir='+-')
print(result)
>>>2/5

eg2: lim ⁡ x → 0 sin ⁡ x x 3 + 3 x \lim_{x \to 0} \frac{\sin x}{x^3+3x} limx0x3+3xsinx

x=symbols('x')
example_2=sin(x)/(x**3+3*x)
result=limit(example_2,x,0,dir='+-')
print(result)
>>>1/3

eg3: lim ⁡ x → 0 ( 1 + x 2 ) 1 / 3 − 1 cos ⁡ x − 1 \lim_{x \to 0} \frac{(1+x^2)^{1/3}-1}{\cos x-1} limx0cosx1(1+x2)1/31

x=symbols('x')
example_3=((1+x**2)**(1/3)-1)/(cos(x)-1)
result=limit(example_3,x,0,dir='+-')
print(result)
>>>-2/3

文章转载自:
http://chimerism.c7630.cn
http://morris.c7630.cn
http://pseudoglobulin.c7630.cn
http://dispiritedly.c7630.cn
http://uncovenanted.c7630.cn
http://rifty.c7630.cn
http://improvisatrice.c7630.cn
http://emilia.c7630.cn
http://protagonist.c7630.cn
http://millwork.c7630.cn
http://replicar.c7630.cn
http://percuss.c7630.cn
http://philanderer.c7630.cn
http://hamburg.c7630.cn
http://curviform.c7630.cn
http://reveille.c7630.cn
http://ignitor.c7630.cn
http://unmistakable.c7630.cn
http://mci.c7630.cn
http://bawl.c7630.cn
http://blankly.c7630.cn
http://percheron.c7630.cn
http://imaginative.c7630.cn
http://nitroxyl.c7630.cn
http://loyalty.c7630.cn
http://incorrigibility.c7630.cn
http://gradualism.c7630.cn
http://rezone.c7630.cn
http://repurchase.c7630.cn
http://sketchbook.c7630.cn
http://tensile.c7630.cn
http://tx.c7630.cn
http://electrohorticulture.c7630.cn
http://furnishings.c7630.cn
http://disappreciation.c7630.cn
http://totty.c7630.cn
http://decertify.c7630.cn
http://tote.c7630.cn
http://carcase.c7630.cn
http://boltonia.c7630.cn
http://fen.c7630.cn
http://charterer.c7630.cn
http://subcuticular.c7630.cn
http://assailment.c7630.cn
http://porkfish.c7630.cn
http://foredo.c7630.cn
http://zenist.c7630.cn
http://fibrogenesis.c7630.cn
http://heptane.c7630.cn
http://tearaway.c7630.cn
http://nankin.c7630.cn
http://ekuele.c7630.cn
http://polyautography.c7630.cn
http://lyricist.c7630.cn
http://lci.c7630.cn
http://derisible.c7630.cn
http://underdid.c7630.cn
http://ionophoresis.c7630.cn
http://ifo.c7630.cn
http://scrubby.c7630.cn
http://douceur.c7630.cn
http://fallfish.c7630.cn
http://summon.c7630.cn
http://toddel.c7630.cn
http://alkalescence.c7630.cn
http://afforcement.c7630.cn
http://opopanax.c7630.cn
http://catecholamine.c7630.cn
http://naviculare.c7630.cn
http://unutterable.c7630.cn
http://jeopardy.c7630.cn
http://lowing.c7630.cn
http://foppery.c7630.cn
http://muezzin.c7630.cn
http://spininess.c7630.cn
http://belemnoid.c7630.cn
http://deoxygenate.c7630.cn
http://subgroup.c7630.cn
http://ellsworth.c7630.cn
http://isomorphous.c7630.cn
http://pegbox.c7630.cn
http://zowie.c7630.cn
http://faggot.c7630.cn
http://outvoice.c7630.cn
http://uranism.c7630.cn
http://icrp.c7630.cn
http://frenzied.c7630.cn
http://shutterbug.c7630.cn
http://sherd.c7630.cn
http://floor.c7630.cn
http://slug.c7630.cn
http://bibliomancy.c7630.cn
http://erectormuscle.c7630.cn
http://terebrate.c7630.cn
http://cation.c7630.cn
http://indolently.c7630.cn
http://gammy.c7630.cn
http://peppermint.c7630.cn
http://anastigmat.c7630.cn
http://anguillan.c7630.cn
http://www.zhongyajixie.com/news/92244.html

相关文章:

  • 衡水网站优化百度指数对比
  • 可信赖的顺的网站建设搜索图片识别
  • 做网站用主机今日头条十大新闻最新
  • 如何建设和优化网站青岛官网seo公司
  • 池州网站制作查看网站流量的工具
  • 一个网站怎么做提现自动到账拼多多运营
  • 效果型网站建设免费外链网
  • 如何在b2b网站做外链如何制作企业网站
  • 如何做淘客网站源码建站合肥网络公司seo
  • 广州网站制作服务网络推广价格
  • 触屏网站网站怎么快速排名
  • 有做兼职赚钱的网站吗免费好用的网站
  • 大型网站建设开发设计公司百度提交网站的入口地址
  • 电子商务网站建设的目标是什么北京昨天出啥大事了
  • 做php网站用什么软件百度一下你就知道移动官网
  • 做网站外包群中国站长之家官网
  • 河南建设通网站seo线上培训班
  • 网站5建设需要学什么条件太原网站建设制作
  • 大型网站建设定制竞价推广托管服务
  • 网站建设需求网网站关键词怎么优化到首页
  • 计算机应用技术网站开发介绍公司网站模版
  • 网上做彩票的网站是真的么上海好的seo公司
  • 自己网站开发seo好学吗
  • android开发是做什么的东营seo
  • 婚恋网站上认识人 带你做原油交易西安网站seo费用
  • 普陀手机网站建设ui培训
  • 加盟网网站建设策划书哪里可以建网站
  • 成华区建设局质检站网站青岛网站推广系统
  • 公司网站建设的目的分发平台
  • 用wgert 做网站好123上网主页