PKJ\lXñB–Hmimetypetext/x-wxmathmlPKJ\lXQdBV55 format.txt This file contains a wxMaxima session in the .wxmx format. .wxmx files are .xml-based files contained in a .zip container like .odt or .docx files. After changing their name to end in .zip the .xml and eventual bitmap files inside them can be extracted using any .zip file viewer. The reason why part of a .wxmx file still might still seem to make sense in a ordinary text viewer is that the text portion of .wxmx by default isn't compressed: The text is typically small and compressing it would mean that changing a single character would (with a high probability) change big parts of the whole contents of the compressed .zip archive. Even if version control tools like git and svn that remember all changes that were ever made to a file can handle binary files compression would make the changed part of the file bigger and therefore seriously reduce the efficiency of version control wxMaxima can be downloaded from https://github.com/wxMaxima-developers/wxmaxima. It also is part of the windows installer for maxima (https://wxmaxima-developers.github.io/wxmaxima/). If a .wxmx file is broken but the content.xml portion of the file can still be viewed using an text editor just save the xml's text as "content.xml" and try to open it using a recent version of wxMaxima. If it is valid XML (the XML header is intact, all opened tags are closed again, the text is saved with the text encoding "UTF8 without BOM" and the few special characters XML requires this for are properly escaped) chances are high that wxMaxima will be able to recover all code and text from the XML file. PKJ\lX rã]ã] content.xml Kedvenc Matematikai Kísérleteim Alapok Halmazok Számok Határérték Differenciálszámítás Derivált Derivált kill(all); (%o0) done diff(f(x),x); (%o1) dd*x*f

x

Magasabb deriváltak diff(f(x),x,3); (%o2) d3d*x3*f

x

Ãllítás Tétel diff(f(x)+g(x),x); (%o3) dd*x*g

x

+dd*x*f

x

diff(f(x)*g(x),x); (%o4) f

x

*

dd*x*g

x

+g

x

*

dd*x*f

x

diff(1/g(x),x); (%o5) −dd*x*g

x

g

x

2
Példák diff(x^n,x); (%o6) n*xn−1 Feladat Feladat plot2d((x-entier(x)-1/2)^2,[x,-3.5,3.5])$ Feladat solve([a*1+b=1^2,a=2*1],[a,b]); (%o8) [[a=2,b=−1]] Feladat 3^(-n)/2^(-n)=(2/3)^n->0 Feladat assume(c<1); (%o9) [c<1] limit((x^c-0)/x,x,0,plus); (%o10) inf Feladat Tétel Következmény: Taylor-tétel Következmény diff(exp(x),x); (%o11) %ex diff(tan(x),x); (%o12) sec

x

2
Megjegyzés taylor(f(x),x,a,5); (%o13)/T/ f

a

+

dd*x*f

x

x=a

*

x−a

+

d2d*x2*f

x

x=a

*

x−a

2
2
+

d3d*x3*f

x

x=a

*

x−a

3
6
+

d4d*x4*f

x

x=a

*

x−a

4
24
+

d5d*x5*f

x

x=a

*

x−a

5
120
+...
Segédtétel Láncszabály Az inverz függvény differenciálási szabálya Az inverz függvény differenciálási szabálya komplexben Következmény diff(log(x),x); (%o14) 1x diff(x^α,x); (%o15) xα−1*α Feladat solve(diff(2*x^3-3*x^2+8,x)); (%o16) [x=0,x=1] Feladat f:x^3+p*x+q; (%o17) x3+p*x+q solve(diff(f,x),x); (%o18) [x=−−p3,x=−p3] subst(sqrt(-p)/sqrt(3),x,f); (%o19) q+−p*p3+

−p

32
332
solve(%,q); (%o20) [q=−3*−p*p+

−p

32
332
]
subst(-sqrt(-p)/sqrt(3),x,f); (%o21) q−−p*p3−

−p

32
332
solve(%,q); (%o22) [q=3*−p*p+

−p

32
332
]
Feladat kill(all); (%o0) done solve(x^2=2*x,x); (%o1) [x=0,x=2] atan(2*2)-atan(2); (%o2) atan

4

−atan

2

float(%), numer; (%o3) 0.2186689458739421 Feladat Feladat diff(abs(x)^3,x); (%o4) 2*x*x+x3x diff(%,x); (%o5) 6*x Feladat Feladat kill(all); (%o0) done (1) diff(2*x^(1/2)-3*x^(2/3),x); (%o1) 1x−2x13 diff(x*sin(x),x); (%o2) sin

x

+x*cos

x

diff((x^3+1)*cos(x),x); (%o3) 3*x2*cos

x

−

x3+1

*sin

x

(2) diff(sin(x)/x,x); (%o4) cos

x

x
−sin

x

x2
diff((sin(x)^20+1)^20,x); (%o5) 400*cos

x

*sin

x

19
*

sin

x

20
+1

19
f:'f; (%o7) f -f'(-x); (3) diff(exp(x*log(x)),x); (%o8) %ex*log

x

*

log

x

+1

diff(exp(log(x)*exp(x^exp(1))),x); (%o2) %e%ex%e*log

x

*

x%e−1*%ex%e+1*log

x

+%ex%ex

diff(log(3)/log(x),x); (%o9) −log

3

x*log

x

2
diff(log((log((log(x)^3)))^2),x); (%o1) 2x*log

x

*log

log

x

(4) etc. Feladat kill(all); (%o0) done (1) diff(x^5+x^2+1,x); (%o1) 5*x4+2*x 1/subst(1,x,%); (%o2) 17 (2) diff(x+sin(x),x); (%o3) cos

x

+1
1/subst(%pi/2,x,%); (%o4) 1 (3) diff(x^x,x); (%o5) xx*

log

x

+1

1/subst(3,x,%); (%o6) 127*

log

3

+1

Feladat Feladat diff(f(x)*g(x),x,5); (%o7) f

x

*

d5d*x5*g

x

+5*

dd*x*f

x

*

d4d*x4*g

x

+10*

d2d*x2*f

x

*

d3d*x3*g

x

+10*

d3d*x3*f

x

*

d2d*x2*g

x

+5*

d4d*x4*f

x

*

dd*x*g

x

+g

x

*

d5d*x5*f

x

PKJ\lXñB–HmimetypePKJ\lXQdBV55 5format.txtPKJ\lX rã]ã] ’content.xmlPK§žd