You are on page 1of 5

:

Equal
Unequal
Greater
Less
GreaterEqual
LessEqual
Not
And
Or

==
!=
>
<
>=
<=
!
&&
||

==
=.=(),
==.:

Simplify[(a+b)2 a2 + 2 a b + b2]
True
.
1/(1+tan2x)=cos2x?

Postfixprefix

.:

ClearAll["Global`*"];
razvoj=Expand[(a+b x) (c x - d x2)]

14

a c x+b c x2-a d x2-b d x3

Factor[razvoj]
x (a+b x) (c-d x)

Postfix ,
..

(a+b x) (c x - d x2)//Expand //Factor


x (a+b x) (c-d x)
Prefix
:

Factor @ Expand@((a+b x) (c x - d x2))


x (a+b x) (c-d x)
Postfix
!
postfix
:

izraz=((x-y) (x+y) x)/(1+y)3;


izraz//ExpandNumerator
(x3-x y2)/(1+y)3

izraz//ExpandDenominator
(x (x-y) (x+y))/(1+3 y+3 y2+y3)

izraz//ExpandAll
x3/(1+3 y+3 y2+y3)-(x y2)/(1+3 y+3 y2+y3)

Log[(x y)3]//PowerExpand
3 Log[x]+3 Log[y]

15



TrigExpand.

Sin[+]//TrigExpand
Cos[] Sin[]+Cos[] Sin[]

Cos[]*Cos[]2//TrigExpand
Cos[]/2+1/2 Cos[] Cos[]2-1/2 Cos[] Sin[]2

%/.//Simplify
Cos[]3

TrigToExp.

Tanh[x]//TrigToExp
(--x+x)/(-x+x)

%//Simplify
(-1+2x)/(1+2x)
TrigFactor
,
.

TrigFactor[Sin[2 ]*Cos[2 ]]
4 Cos[] Sin[/4-] Sin[] Sin[/4+]
TrigReduce

TrigReduce[Cos[] Cos[]-Sin[] Sin[]]


Cos[+]

16

)sin(2a)
)sin(a)2+cos(a)2
)sin(2a)sin(2b)
)sin(a)sin(b)

,
. Together
.

zaedno=Together[a/(b-c)+d/(b+c)]
(a b+a c+b d-c d)/((b-c) (b+c))
Apart.

Apart[zaedno]
a/(b-c)+ d/(b+c)
Cancel

Cancel[(2 x2 y)/((1+y) x)]


(2 x y)/(1+y)
NumeratorDenominator
:

izraz=((x-y) (x+y) x)/(1+y)3;


Denominator[izraz]

17

Numerator[izraz]
(1+y)3
x (x-y) (x+y)
4.0 Mathematica,

Simplify,
.
.

izr=Log[x-y]+Log[x+y];
Simplify[izr]
Log[x-y]+Log[x+y]
.
x>y

Simplify[izr,{x>y}]
Log[x2-y2]
.

(xm)nxmn?
.
(a+b)((c+d x) x+f x2). Mathematica
:
)(a+b)cx+(a+b)(d+f)x2
b)acx+bcx+adx2+bdx2+afx2+bfx2
c)(a+b)x(c+dx+fx)

18

You might also like