当前位置:网站首页>Matlab exercises -- exercises related to symbolic operation
Matlab exercises -- exercises related to symbolic operation
2022-06-28 04:27:00 【Fanyi】
matlab Series articles : Catalog

List of articles
One 、 subject
1. Calculate the following limits
- (1) lim x → 0 1 + x − 1 − x 1 + x 3 − 1 − x 3 \lim\limits_{x \to 0}\frac{\sqrt{1+x}-\sqrt{1-x}}{\sqrt[3]{1+x}-\sqrt[3]{1-x}} x→0lim31+x−31−x1+x−1−x
- (2) lim x → 0 ( 3 x + 2 3 x − 1 ) 2 x − 1 \lim\limits_{x \to 0}(\frac{3x+2}{3x-1})^{2x-1} x→0lim(3x−13x+2)2x−1
- (3) lim x → 0 ( 1 x 2 − 1 sin 2 x ) \lim\limits_{x \to 0}(\frac{1}{x^2}-\frac{1}{\sin^2x}) x→0lim(x21−sin2x1)
- (4) lim x → 0 ( π 2 − arctan x ) 1 ln x \lim\limits_{x \to 0}(\frac{\pi}{2}-\arctan{x})^{\frac{1}{\ln{x}}} x→0lim(2π−arctanx)lnx1
2. Calculate the following derivatives
- (1) seek y ′ y^{'} y′, y = ( x + 1 ) arctan x y=(\sqrt{x}+1)\arctan{x} y=(x+1)arctanx
- (2) seek y ′ ′ y^{''} y′′, y = 1 + x 2 sin x + cos x y=\frac{1+x^2}{\sin{x}+\cos{x}} y=sinx+cosx1+x2
- (3) seek y ′ y^{'} y′, y = x + x + x y=\sqrt{x+\sqrt{x+\sqrt{x}}} y=x+x+x
- (4) { x = a ( cos t + t sin t ) y = a ( sin t − t cos t ) \left\{ \begin{aligned} x&=a(\cos{t}+t\sin{t})\\ y&=a(\sin{t}-t\cos{t}) \end{aligned} \right . { xy=a(cost+tsint)=a(sint−tcost)
3. Calculate the following definite integral
- (1) ∫ 0 π 2 cos x 1 + sin 2 x d x \int_{0}^{\frac{\pi}{2}}\frac{\cos{x}}{1+\sin^2x}dx ∫02π1+sin2xcosxdx
- (2) ∫ 0 a x 2 a − x a + x d x \int_{0}^{a}x^2\sqrt{\frac{a-x}{a+x}}dx ∫0ax2a+xa−xdx
- (3) ∫ 0 1 d x ( x 2 − x + 1 ) 3 2 \int_{0}^{1}\frac{dx}{(x^2-x+1)^{\frac{3}{2}}} ∫01(x2−x+1)23dx
4. Calculate the sum of the following series
- (1) ∑ n = 1 ∞ 1 n 2 \sum_{n=1}^{\infty}{\frac{1}{n^2}} n=1∑∞n21
- (2) ∑ n = 1 ∞ ( − 1 ) n − 1 n \sum_{n=1}^{\infty}{\frac{(-1)^{n-1}}{n}} n=1∑∞n(−1)n−1
- (3) ∑ n = 1 ∞ x 2 n − 1 2 n − 1 \sum_{n=1}^{\infty}{\frac{x^{2n-1}}{2n-1}} n=1∑∞2n−1x2n−1
Two 、 answer
Topic 1 , Calculate the following limits
①
>> syms x
>> y = ((1+x)^(1/2)-(1-x)^(1/2))/((1+x)^(1/3)-(1-x)^(1/3))
y =
((x + 1)^(1/2) - (1 - x)^(1/2))/((x + 1)^(1/3) - (1 - x)^(1/3))
>> limit(y,x,0)
ans =
3/2
②
>> syms x
>> y = ((3*x+2)/(3*x-1))^(2*x-1)
y =
((3*x + 2)/(3*x - 1))^(2*x - 1)
>> limit(y,x,0)
ans =
-1/2
③
>> syms x
>> y = ((1/x^2)-1/(sin(x)^2))
y =
1/x^2 - 1/sin(x)^2
>> limit(y,x,0)
ans =
-1/3
④
>> syms x
>> y = (pi/2 - atan(x))^(1/(log(x)))
y =
(pi/2 - atan(x))^(1/log(x))
>> limit(y,x,0)
ans =
1
Topic two , Calculate the following derivatives
①
>> y = (x^(1/2)+1)*atan(x)
y =
atan(x)*(x^(1/2) + 1)
>> diff(y,x)
ans =
atan(x)/(2*x^(1/2)) + (x^(1/2) + 1)/(x^2 + 1)
②
>> y = (1+x^2)/(sin(x)+cos(x))
y =
(x^2 + 1)/(cos(x) + sin(x))
>> diff(y,x)
ans =
(2*x)/(cos(x) + sin(x)) - ((x^2 + 1)*(cos(x) - sin(x)))/(cos(x) + sin(x))^2
③
>> y = (x+(x+(x)^(1/2))^(1/2))^(1/2)
y =
(x + (x + x^(1/2))^(1/2))^(1/2)
>> diff(y,x)
ans =
((1/(2*x^(1/2)) + 1)/(2*(x + x^(1/2))^(1/2)) + 1)/(2*(x + (x + x^(1/2))^(1/2))^(1/2))
④
>> syms x y t a
>> x = a*(cos(t)+t*sin(t))
x =
a*(cos(t) + t*sin(t))
>> y = a*(sin(t)-t*cos(t))
y =
a*(sin(t) - t*cos(t))
>> dx = diff(x,t)
dx =
a*t*cos(t)
>> dy = diff(y,t)
dy =
a*t*sin(t)
>> dy/dx
ans =
sin(t)/cos(t)
Question three , Calculate the following definite integral
①
>> syms x y
>> y = cos(x)/(1+(sin(x))^2)
y =
cos(x)/(sin(x)^2 + 1)
>> int(y,x,0,pi/2)
ans =
pi/4
②
>> syms x y a
>> y = (x^2)*((a-x)/(a+x))^(1/2)
y =
x^2*((a - x)/(a + x))^(1/2)
>> int(0,a)
ans =
0
>> int(y,x,0,a)
ans =
(a^3*(3*pi - 8))/12
③
>> syms x y a
>> y = 1/((x^2-x+1)^(3/2))
y =
1/(x^2 - x + 1)^(3/2)
>> int(y,x,0,1)
ans =
4/3
Question 4 , Calculate the sum of the following series
①
>> syms x y n
>> y = 1/(n^2)
y =
1/n^2
>> symsum(y,n,1,Inf)
ans =
pi^2/6
②
>> y = (-1)^(n-1)/n
y =
(-1)^(n - 1)/n
>> symsum(y,n,1,Inf)
ans =
log(2)
③
>> y = (x^(2*n-1))/(2*n-1)
y =
x^(2*n - 1)/(2*n - 1)
>> symsum(y,n,1,Inf)
ans =
piecewise(abs(x) < 1, atanh(x))

边栏推荐
- Principle of event delegation
- 一文详解|增长那些事儿
- 抖音实战~关注博主
- 2021年终总结及2022年展望
- Web APIs DOM event foundation dark horse programmer
- 【Matlab红绿灯识别】红绿灯识别【含GUI源码 1908期】
- Digital promising, easy to reach, Huawei accelerates the layout of the commercial market with "five pole" star products
- 10: 00 interview, came out at 10:02, the question is really too
- Multi project design and development · introduction to class library project
- Building log analysis system with elk (II) -- deployment and installation
猜你喜欢

Simple factory mode

Problems with cat and dog queues

《性能之巅第2版》阅读笔记(二)--性能观察工具

With the transformation of automatic empowerment, Feihe dairy accelerates its move towards digitalization!

抖音实战~关注博主

The company leader said that if the personal code exceeds 10 bugs, he will be dismissed. What is the experience?

JVM I: introduction to JVM and understanding of class files

RT-Thread 双向链表(学习笔记)

leetcode - 329. Longest increasing path in matrix

La norme européenne en 597 - 1 pour les meubles est - elle la même que les deux normes en 597 - 2 pour les ignifuges?
随机推荐
软件测试报告怎么编写?第三方性能报告范文模板来了
Simple factory mode
leetcode:714. 买卖股票的最佳时机含手续费【dp双状态】
Live online source code, JS dynamic effect, sidebar scrolling fixed effect
由两个栈组成的队列
From zero to one, I will teach you to build a "search by text and map" search service (I)
2022年6月对自己近况的一次总结
Reading notes of top performance version 2 (II) -- Performance observation tool
Une seule pile dans l'ordre inverse avec des fonctions récursives et des opérations de pile
How to write a software test report? Here comes the third party performance report template
领歌leangoo敏捷看板工具新增导出卡片文档和粘贴共享脑图节点功能
【Proteus仿真】定时器1外部计数中断
Multithreading and high concurrency II: detailed introduction to volatile and CAS
Win10 how to delete the large file hiberfil sys
测试/开发程序员真的是青春饭吗?世界是公平的,咱们都凭实力说话......
27年,微软IE结束了!
2022年中國音頻市場年度綜合分析
From meeting a big guy to becoming a big guy, shengteng AI developer creation day brings infinite possibilities to developers
Sorting from one stack to another
有人用cdc同步到mysql发生过死锁吗?