PKdA±LñB–Hmimetypetext/x-wxmathmlPKdA±LàÉnA55 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/andrejv/wxmaxima. It also is part of the windows installer for maxima (http://maxima.sourceforge.net). 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. PKdA±Lÿ[œ&*&* content.xml f(x) := exp(-x^2)*sin(%pi*x^3); plot2d(f, [x, -2, 2]); plot2d(f(x), [x, -2, 2]); wxplot2d(f(x), [x, -2, 2]); amp_plus: exp(-x^2); amp_minus: -exp(-x^2); wxplot2d([f, amp_plus, amp_minus], [x, -2, 2], [color, red, blue, black]); f(x, k) := exp(-x^2)*sin(k*%pi*x^3); with_slider(k, makelist(i, i, 1, 40), f(x, k), [x, -2, 2]); load(implicit_plot); implicit_plot(x^3+y^3-5*x*y+1/5, [x, -3, 3], [y, -3, 3]); f: (x^2+y^2)^3 + 5.12*(x^2+y^2)^2 - 5.15*(x^4-y^4) - 14.7456*y^2; implicit_plot(f, [x, -1.2, 1.2], [y, -1.2, 1.2], [same_xy, true]); sf: subst([x=r*cos(t), y=r*sin(t)], f); nsf: expand(sf/r^2); sols: solve(nsf, r); rsol1: rhs(sols[1]); wxplot2d([parametric, rsol1*cos(t), rsol1*sin(t), [t, 0, 2*%pi]], [same_xy, true]); x: [-1.0,0.0,1.0,2.0,1.6,1.2,0.0,-1.6,-2.1,-2.8,-2.0,-0.9,0.0,1.0,0.0,0.0,-1.0]; y: [0.0,1.0,1.0,0.0,-1.5,-2.1,-2.8,-2.5,-2.0,-0.7,2.3,3.7,5.0,8.0,9.0,-6.0,-7.2]; wxplot2d([discrete, x, y]); kill(all); f(x, y) := cos(x*y); plot3d(f, [x, -%pi, %pi], [y, -%pi, %pi]); wxplot3d(f, [x, -%pi, %pi], [y, -%pi, %pi]); wxplot3d(f, [x, -%pi, %pi], [y, -%pi, %pi], [azimuth, 45], [elevation, 75]); f(x,y) := x^3 - 3*x*y^2; wxplot3d(f, [x, -1, 1], [y, -1, 1]); w: u + %i*v; z: rectform(exp(w)); x: realpart(z); y: imagpart(z); wxplot3d([x, y, u], [u, -4, 1], [v, -3*%pi, 3*%pi]); wxplot3d([x, y, v], [u, -4, 1], [v, -3*%pi, 3*%pi]); kill(all); array(a, 2, 2); a[1, 1]: 3; listarray(a); M: genmatrix(a, 2, 2, 0, 0); matrixp(M); M[1, 2]; M[2, 2]; h[i, j] := mod(i*j, 13); M: genmatrix(h, 13, 13, 1, 1); M: matrix([1, 2], [3, 4]); A: genmatrix(lambda([i, j], random(100)-50), 3, 3, 1, 1); row(A, 2); matrixp(%); col(A, 3); matrixp(%); determinant(A); B: genmatrix(lambda([i, j], random(100)-50), 3, 3, 1, 1); A+B; A*B; A.B; B.A; b: genmatrix(lambda([i, j], random(100)-50), 3, 1, 1); A*b; A.b; addcol(A, b); X: matrix([x[1], x[2], x[3]]); X: transpose(X); A.X = b; eqs: makelist(lhs(%)[i, 1] = rhs(%)[i, 1], i, 1, 3); sols: solve(eqs); sol: invert(A).b; A.sol; b; A[1, 2]: A[2, 1]; A[1, 3]: A[3, 1]; A[2, 3]: A[3, 2]; A; eigenvalues(A); rectform(float(%)); eigenvectors(A); load(linearalgebra); V: eigens_by_jacobi(A); d: zeromatrix(3, 3)$ d[1, 1]: V[1][1]$ d[2, 2]: V[1][2]$ d[3, 3]: V[1][3]$ d; A.V[2]; V[2].d; V[2].d.invert(V[2]); A; A: genmatrix(lambda([i, j], random(100)-50), 3, 3, 1, 1); b: gramschmidt(A); genmatrix(lambda([i, j], ev(b[i].b[j])), 3, 3, 1, 1); ob: map(lambda([x], ev(x/sqrt(x.x))), b); genmatrix(lambda([i, j], ev(ob[i].ob[j])), 3, 3, 1, 1); float(%); PKdA±LñB–HmimetypePKdA±LàÉnA55 5format.txtPKdA±Lÿ[œ&*&* ’content.xmlPK§á0