Giải Matlab Giải Tích 1

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 8

xCOMMAND WINDOWS

3. Câu 1 điểm
Dạng 1: Tính giới hạn

9n syms n
lim limit((9^n)/factorial(n),inf)
x n !

1 syms n
lim limit(1/(n + (-1)^n), inf)
x n  ( 1) n

syms n
lim n 2  1  3 n3  1 limit(sqrt(n^2+1)-(n^3+1)^(1/3), inf)
x

2n  3n syms n
lim n n limit((2^n + 3^n)/(2^n - 3^n), inf)
x 2  3

2n3  3n 2  ln 9 n syms n
lim limit((2*n^3 + 3*n^2 -
x 3ln 7 n  n3 (log(n))^9)/(3*(log(n))^7 - n^3), Inf)

x 1
m syms m n x
lim n limit((x^(1/m) - 1)/(x^(1/n) - 1), x, 1)
x1 x 1
x  x 1 1 syms x
lim limit((sqrt(x) + sqrt(x-1) - 1)/sqrt(x^2 - 1),
x1
x2  1 1)

2  2cos x syms x
lim limit((sqrt(2) - 2*cos(x))/(pi - 4*x), pi/4)
x
4
  4x
x xa syms x a
lim tan sin limit((tan(pi*x/(2*a)))*sin((x-a)/2), x, a)
x a 2a 2
log a x  1  x 
lim
x0 x
2 x 1 syms x
 x3
lim  
limit(((x - 3)/(x + 2))^(2*x + 1), inf)
x x  2
 
 1x  syms x a
lim x  a  1 limit(x*(a^(1/x) - 1), Inf)
x
 
1 syms x
lim  2  x  x limit((2 + x)^(1/x), x, 0, 'left')
x0
limit((2 + x)^(1/x), x, 0, 'right')

tan  4 x    syms x
lim limit(abs(tan(4*x - pi))/(2*x - pi/2), x, pi/4,
  'right')
x  0
4 2x  limit(abs(tan(4*x - pi))/(2*x - pi/2), x, pi/4,
2 'left')
x syms x
 1x 1 
lim  e   limit((exp(1/x) + 1/x)^x, x, 0)
x 0
 x
2x  x2 syms x
lim limit((2^x - x^2)/(x - 2), 2)
x2 x  2

tan(2 x)  3arcsin(4 x) syms x


lim limit((tan(2*x) - 3*asin(4*x))/(sin(5*x) -
x0 sin(5 x )  6arctan(7 x)
6*atan(7*x)), 0)

esinx  ln  1  x   1 syms x
lim limit((exp(x) + log(1 - x) - 1)/(asin(x) -
x 0 arcsin x  sinx sin(x)))

e x  ln  1  sinx   1 syms x
lim limit((exp(x) + log(1 - sin(x)))/((8 -
x 0 3
8  x4  2 x^4)^(1/3) - 2))
1 syms x

lim
 1 x x  e limit(((1 + x)^(1/x) - exp(1))/((sin(x))^2
+ x))
x0 sin 2 x  x
1  x cos x  1  2 x syms x
lim limit((1 + x*cos(x) - sqrt(1 + 2*x))/(log(1
x 0 ln(1  x)  x + x) - x))
1 syms x
lim  coslnx  1cosx limit((cos(log(x)))^(1/(1 - cos(x))))
x0

 2x2  3  2 syms x
lim  2 x limit(((2*x^2 + 3)/(2*x^2 - 1))*x^2, inf)
x 2 x  1
 
x syms x a
tan
 x 2a limit((2 - x/a)^tan((pi*x)/(2*a)), x, a)
lim  2  
x
 a
Dạng 2: Tính đạo hàm
Subs(f(x), a): Tính giá trị hàm số tại a
Diff(f(x), n): Tính đạo hàm cấp n của f(x)

 
 1 
1 syms x
f  x  x 1   1 , f ''  1 subs(diff((sqrt(x) - 1)*(1/sqrt(x)
 x  + 1), 2), 1)
2 sin x  cos x syms x
f  x  , f '''(0) subs(diff((sin(x) - cos(x))/(sin(x)
sin x  cos x + cos(x)), 3), 0)
 syms x
3 x
f  x  e 3 cos 2 , f '(0) subs(diff(exp(pi/3)*(cos(x/3))^2),
3 0)
4  x syms x
f  x  ln tan    , f "(0) subs(diff(log(tan(pi/4 + x/2)), 2),
 4 2 0)
5 syms x
f  x   x  x  x , f '(1) subs(diff(sqrt(x + sqrt(x +
sqrt(x)))), 1)
f  x    sin x 
arcsinx syms x
6 , f "(1) subs(diff((sin(x))^asin(x), 2), 1)
7 f  x   e 2 x sin 3 x, f '"(0) syms x
subs(diff(exp(2*x)*sin(3*x), 3), 0)
8 f  x   x 3 ln x, f 4 (1) syms x
subs(diff(x^3*log(x), 4), 1)
9 f  x   2sin x cos(sin x), f "(0) syms x
subs(diff(2^((sin(x)))*cos(sin(x)),
2), 0)
1  x  t  t cos t  2sin t     syms t
0  , y'  t   xt = subs(diff(t*(t*cos(t) -
 y  t  t sin t  2cos t   4 2*sin(t))), pi/4)
yt = subs(diff(t*(t*sin(t) +
2*cos(t))), pi/4)
res = yt/xt
1  1 syms t
 x  arccos xt = diff(acos(1/sqrt(1 + t^2)))
1  1 t2 yt = diff(asin(t/sqrt(1 + t^2)))
 , y" resp = (diff(y1/xt))/xt
t
 y  arcsin  yx ' t '
 1 t2 y xx " 
% tx'
1  x  arctan t syms t
, y" xt = diff(atan(t))

2
 y  ln  
1  t 2
, t   1,1 yt = diff(log(1 - t^2))
res = diff(yt/xt)/xt
1 ex syms x
3 f  x   2 , f " 1 subs(diff(exp(x)/x^2, 2), 1)
x
1   syms x
f  x    x  sin x  , f '  
x
subs(diff((x + sin(x))^x), pi/4)
4 4
1
5 
f  x   ln x 2  x 4  1 , f '(0)  syms x
subs(diff(log(x^2 + sqrt(x^4 +
1))), 0)
1 f  x    2 x  3 e  x , f " syms x
diff((2*x + 3)*exp(-x), 2)
6

 
x syms x t
1
7 f  x   e t 2
 t dt subs(int(exp(-t^2) + t, 0, x), 1)
0 tại x0  1
x syms x t
1 et
8 f  x    dt , x0  ln 2 subs(int(exp(t)/t, 1, x), log(2))
t x
et
ei  x    dt
1

% 
t

Dạng 3: Tính tích phân


Int(f, x): Tích phân của f theo x
Int(f(x), a, b): Tích phân của f(x) từ a tới b

 xdx
1 2 syms x
cos
int((cos(x))^2)
  x  x  2  dx
2 2 syms x
int(x^2 + x - 2)

 arctan xdx
3 syms x
int(atan(x))

 x e dx
4 2 x syms x
int((x^2)*exp(-x))
5 ln x syms x
 x dx int(log(x)/x)

6 2 syms x
 x ln xdx
1
int(x*log(x), 1, 2)

7 1 syms x
 x arctan xdx
0
int(x*atan(x), 0, 1)
8  syms x
 xe
x
dx int(x*exp(-x), 0, inf)
0
9 1 syms x
x

0 1 x 2
dx int(x/sqrt(1 - x^2), 0, 1)

10 a syms x a
dx
0 a 2  x 2 int(1/(x^2 + a^2), 0, a)

11  syms x
dx
0
a2  x2
int(1/(x^2 + a^2), 0, inf)

12  syms x
e
 x2
dx int(exp(-x^2), 0, inf)
0
13  2 syms x
sin x

0
x
dx int(sin(x)/x, 0, pi/2)

14  syms x
dx
0
x3  x  1
int(1/(x^3 + x + 1), 0, inf)

15 0 syms x
 xe
x
dx int(x*exp(-x), -inf, 0)


Dạng 4: Vẽ miền D (không cần thiết tô màu)


1 ABC , A(1,1), B (2,3), C (1, 2) X = [1 2 -1], Y = [1 3 2]
fill(X, Y, 'g') % D : vùng xanh lá cây
2 1  x  2,0  y  e x x = -1: 1/9: 2
area(exp(x)) % D : vùng màu xanh
3 y  cos x, y  0,0  x  2 x = 0: pi/100: 2*pi;
y = cos(x);
fill(x, y, 'g') % D : vùng xanh lá cây
4  x 2  y 2  2 x syms x y
 2 ezplot(x^2 + y^2 == 2*x)
 x  y  2 y
2
hold on
ezplot(x^2 + y^2 == 2*y)
% D : Giao điểm 2 đường tròn
5 y  ln x, y  1, x  e ezplot(log(x) == y), hold on
6  x 2  y 2  2 x syms x y
 2 ezplot(x^2 + y^2 == 2*x)
 x  y  2
2
hold on
ezplot(x^2 + y^2 == 2)
% D: Phần chung của 2 hình tròn
7  x 2  y 2  2 y syms x y, ezplot(x^2 + y^2 ==
 2*y), hold on
0  x  3 y % D : Phần nằm dưới đường thẳng
và ở bên trong hình tròn
8  y  sinh(x) syms x y, ezplot(y == sinh(x)),
 hold on
 y  0, x  3
9 3
y  ,y  4 x
x
10 
y  arcsin x, x  0, y 
2

Dạng 5 : Tính diện tích miền phẳng

1 y  sin x, y  0,0  x  2 syms x


int(abs(sin(x)), 0, 2*pi)
2 y  x 2  2 x, y  0,0  x  3 syms x
int(abs(x^2 - 2*x),0, 3)
3 syms x
x
y , y  0,0  x   int(abs(sqrt(x)/(x^3 +1)), 0, inf)
x3  1
4 y 2  4 x, x 2  4 y syms x
int(abs(sqrt(4*x) - x^2/4), 0, 4)
5 y  e x  1, y  e3 x  3, x  0 syms x
A = solve(exp(x) - 1 == exp(3*x) - 3)
isreal(A(1,1)), isreal(A(2,1)),
isreal(A(3,1))
int(abs(exp(3*x) - exp(x) - 2), 0, A(1,1))
6 x 2  y 2  1, x 2  y 2  2 y  1 syms x y
A = solve(x^2 + y^2 == 1, x^2 + y^2 -
2*y ==1)
A = [A.x A.y]
int(abs(sqrt(1 - x^2) - sqrt(2 - x^2) - 1),
A(1,1), A(1,2))
7 1 syms x
y  ln  x  2  , y  2ln x, x  xo = solve(log(x + 2) = 2*log(x))
e int(abs(log(x + 2) - 2*log(x)), 1/exp(1),
xo)
8 x 2  y 2  1, x 2  y 2  2 y  1 syms x y
A = solve(x^2 + y^2 == 1, x^2 + y^2 +
2*y ==1)
A = [A.x A.y]
int(abs(sqrt(1 - x^2) - sqrt(2 - x^2) + 1),
A(1,1), A(1,2))
9 x 2  y 2  8, y 2  2 x syms x y
A = solve(x^2 + y^2 == 8, y^2 == 2*x)
abs(int(abs(y^2/2 - sqrt(8 - y^2)), 2,
-2))
1 27 x2 syms x
0 y 2 ,y  solve(27/(x^2 + 9) = x^2/6)
x 9 6 int(abs(27/(x^2 + 9) - x^2/6), -3, 3)

Dạng 6 : Tính diện tích mặt cong


b
S x  2  f  x  1   y '  x   dx
2

1 x3 syms x
y  , x  0, x  1 2*pi*int(abs(x^3/3)*sqrt(1 +
3 (diff(x^3/3))^2), 0, 1)
2 y  x2 , y  x syms x
solve(x^2 - x == 0)
2*pi*int(abs(x^2-x)*sqrt(1 + (diff(x^2 -
x))^2), 0, 1)
3 y  x, y  5 x  x 2 syms x
solve(x == 5*x + x^2)
2*pi*int(abs(x^2 + 4*x)*sqrt(1 + (diff(x^2 +
4*x))^2), -4, 0)
4 2 y  x 2 ,2 x  y 2 syms x

5 x2 y 2
 1
4 9
6

Giải phương trình vi phân: dsolve


D2y = y”
x syms y(x)
y  xy '  y ln
y So = dsolve(y - x*diff(y) ==
y*log(x/y))
% Nghiệm y1 = x, y2 =
x*exp(C7*x), trong đó C7 là
hằng số nào đó
 1  y   y ' y   e x , y(2)  1 syms y(x)
So = dsolve((1 - x)*(diff(y) +
y) == exp(-x), y(2) == 1)
y ' y cot x  sin x syms y(x)
So = dsolve(diff(y) - y*cot(x)
== sin(x))
5 y " 6 y ' 5 y  xe x syms y(x)
dsolve('5*D2y - 6*Dy + 5*y
== x*exp(x)')

Tìm tham số để hàm liên tục tại x =x0 và vẽ đường cong minh họa
(đánh dấu điểm đặc biệt (x0,f(x0)))
 x  1, x  1 syms x a
f  x   , x0  1 solve(limit(x+1, x, 1, 'left') ==
3  ax , x  1
2
limit(3 - a*x^2, x, 1, 'right'), a)
%a=1
% Vẽ đồ thị
syms x
ezplot('3 - x^2', [1, 10])
hold on
ezplot('x + 1', [-10, 1])
axis([-10, 10, -10, 10])
text(1, 2, ' \leftarrow (x0,
(f(x0)) ')

You might also like