You are on page 1of 4

In[1]:= f[x_] := (x ^ 2 + 3) / (2 x + 1)

In[2]:= FunctionDomain [f[x], x]


1 1
Out[2]= x<- || x > -
2 2

In[3]:= Limit [f[x], x → - 0.5 ]


Out[3]= Indeterminate

In[4]:= Limit [f[x], x → - 0.5, Direction → 1]


Out[4]= -∞

In[5]:= Limit [f[x], x → - 0.5, Direction → - 1]


Out[5]= ∞

In[6]:= Limit [f[x], x → Infinity ]


Out[6]= ∞

In[7]:= Limit [f[x], x → - Infinity ]


Out[7]= -∞

In[10]:= k = Limit [f[x] / x, x → Infinity ]


1
Out[10]=
2

In[11]:= n = Limit [f[x] - k * x, x → Infinity ]


1
Out[11]= -
4

In[12]:= k*x+n
1 x
Out[12]= - +
4 2

In[13]:= h[x_] := Sin [x] / x

In[14]:= FunctionDomain [h[x], x]


Out[14]= x < 0 || x > 0

In[15]:= Limit [h[x], x → 0]


Out[15]= 1

In[16]:= h1 [x_] := If [x ≠ 0, h[x], 1]


2

In[17]:= Plot [h1 [x], {x, - 3, 3}]

1.0

0.8

0.6

Out[17]=

0.4

0.2

-3 -2 -1 1 2 3

In[20]:= D[x ^ n, x]
Out[20]= n x- 1 + n

In[19]:= Clear [n]

In[21]:= D[x ^ n, n]
Out[21]= xn Log [x]

In[22]:= D[x ^ n, {x, 3}]


- 3+ n
Out[22]= (- 2 + n) × (- 1 + n) n x

In[23]:= f[x_ , y _] := x ^ 2 + y ^ 2

In[24]:= D[f[x, y], x]


Out[24]= 2x

In[25]:= D[f[x, y], y]


Out[25]= 2y

In[26]:= D[f[x, y], {x, 2}]


Out[26]= 2

In[27]:= D[f[x, y], {x, 1}, {y, 1}]


Out[27]= 0

In[28]:= f[x_ , y _] := (x - y) / (x + y); g[x_ , y _] := x ^ 2 + y ^ 2

In[32]:= A = MatrixForm [D[{f[x, y], g[x, y]}, {{x, y}}]] // Simplify


Out[32]//MatrixForm=
2y 2x
-
x+ y x+ y
2 2

2x 2y
3

In[35]:= A / . {x → 1, y → 0}
Out[35]//MatrixForm=

0 -2
2 0

In[36]:= D[x ^ 2 + y[x] ^ 2 + 5 y[x], x]


Out[36]= 2 x + 5 y′ [x] + 2 y[x] y′ [x]

In[37]:= stactionarneTacke = Solve [D[x ^ 3 + 3 x ^ 2 - 3 x - 1, x] == 0, x]

Out[37]=  x → - 1 - 2 , x → - 1 + 2 

In[38]:= Reduce [D[x ^ 3 + 3 x ^ 2 - 3 x - 1, x] > 0, x]

Out[38]= x < -1 - 2 || x > - 1 + 2

In[39]:= Integrate [x ^ n, x]
x1 + n
Out[39]=
1+n

In[40]:= Integrate [2 x / (x + 3), {x, 1, 2}]


Out[40]= 2 × (1 - 3 Log [5] + Log [64 ])

In[41]:= Integrate [1 / x, {x, - 1, 2}]


1
Integrate : Integral of does not converge on {-1, 2 }.
x
2 1
Out[41]=  ⅆx
-1 x

In[42]:= Integrate [x ^ 2 + y ^ 2, {x, 0, 1}, {y, 0, x}]


1
Out[42]=
3

In[43]:= Sum [x ^ i / i, {i, 7}]


x2 x3 x4 x5 x6 x7
Out[43]= x+ + + + + +
2 3 4 5 6 7

In[44]:= Sum [i, {i, n}]


1
Out[44]= n (1 + n)
2

In[45]:= Sum [1 / n ^ 4, {n, 1, Infinity }]


π4
Out[45]=
90
4

In[46]:= Sum [(- 1) ^ n, {n, 0, Infinity }]


Sum : Sum does not converge .

 (- 1)
n
Out[46]=

n= 0

In[47]:= Series [(x + 1) ^ n, {x, 0, 3}]


1 2
1 3 4
Out[47]= 1+nx+ × (- 1 + n) n x + × (- 2 + n) × (- 1 + n) n x + O[x]
2 6

You might also like