7373` ;
7474
7575exports [` EULER DERIVATIVE NOTATION D^2_x f - second derivative 1` ] = `
76- \\ frac{ \\mathrm {d }} { \\ mathrm { d } x } \\ frac { \\mathrm {d }} { \\ mathrm { d } x } f
77- D((x) |-> D((x) |-> f, x), x)
78- ["D", ["Function", [" D", ["Function", "f", "x"] , "x"], "x"], "x"]
76+ \\ frac{ \\mathrm {d }^ {2} } { \\mathrm {d }x ^ {2} } f
77+ D(D((x) |-> f, x), x)
78+ ["D", ["D", ["Function", "f", "x"], "x"], "x"]
7979` ;
8080
8181exports [` EULER DERIVATIVE NOTATION D_t x - different variable 1` ] = `
@@ -86,8 +86,8 @@ D((t) |-> x, t)
8686
8787exports [` EULER DERIVATIVE NOTATION D_x (x^2 + 1) - derivative of expression 1` ] = `
8888\\ frac{ \\mathrm {d }} { \\mathrm {d }x } x^2+1
89- D((x) |-> x^2 + 1, x)
90- ["D", ["Function", [" Add", ["Square", "x"], 1], "x" ], "x"]
89+ D(x^2 + 1, x)
90+ ["D", ["Add", ["Square", "x"], 1], "x"]
9191` ;
9292
9393exports [` EULER DERIVATIVE NOTATION D_x f - first derivative 1` ] = `
@@ -418,8 +418,8 @@ int(sin(x) dx) + 1 === 2
418418
419419exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS \\ sin'(x) - known function with prime 1` ] = `
420420\\ frac{ \\mathrm {d }} { \\mathrm {d }x } \\ sin(x)
421- D((x) |-> sin(x), x)
422- ["D", ["Function", [" Sin", "x"] , "x"], "x"]
421+ D(sin(x), x)
422+ ["D", ["Sin", "x"], "x"]
423423` ;
424424
425425exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS f' without arguments - returns Derivative 1` ] = `
@@ -429,49 +429,33 @@ Derivative(f)
429429` ;
430430
431431exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS f'''(x) - triple prime with argument 1` ] = `
432- \\ frac{ \\mathrm {d }} { \\mathrm {d }x } \\ frac{ \\mathrm {d }} { \\mathrm {d }x } \\ frac{ \\mathrm {d }} { \\mathrm {d }x } f(x)
433- D((x) |-> D((x) |-> D((x) |-> f(x), x), x), x)
434- [
435- "D",
436- [
437- "Function",
438- [
439- "D",
440- ["Function", ["D", ["Function", ["f", "x"], "x"], "x"], "x"],
441- "x"
442- ],
443- "x"
444- ],
445- "x"
446- ]
432+ \\ frac{ \\mathrm {d }^ {3}} { \\mathrm {d }x ^ {3}} f(x)
433+ D(D(D(f(x), x), x), x)
434+ ["D", ["D", ["D", ["f", "x"], "x"], "x"], "x"]
447435` ;
448436
449437exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS f''(x) - double prime with argument 1` ] = `
450- \\ frac{ \\mathrm {d }} { \\mathrm {d }x } \\ frac{ \\mathrm {d }} { \\mathrm {d }x } f(x)
451- D((x) |-> D((x) |-> f(x), x), x)
452- [
453- "D",
454- ["Function", ["D", ["Function", ["f", "x"], "x"], "x"], "x"],
455- "x"
456- ]
438+ \\ frac{ \\mathrm {d }^ {2}} { \\mathrm {d }x ^ {2}} f(x)
439+ D(D(f(x), x), x)
440+ ["D", ["D", ["f", "x"], "x"], "x"]
457441` ;
458442
459443exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS f'(x) - single prime with argument 1` ] = `
460444\\ frac{ \\mathrm {d }} { \\mathrm {d }x } f(x)
461- D((x) |-> f(x), x)
462- ["D", ["Function", ["f", "x"] , "x"], "x"]
445+ D(f(x), x)
446+ ["D", ["f" , "x"], "x"]
463447` ;
464448
465449exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS f'(x, y) - multiple arguments uses first as variable 1` ] = `
466450\\ frac{ \\mathrm {d }} { \\mathrm {d }x } f(x, y)
467- D((x) |-> f(x, y), x)
468- ["D", ["Function", [" f", "x", "y"], "x "], "x"]
451+ D(f(x, y), x)
452+ ["D", ["f", "x", "y"], "x"]
469453` ;
470454
471455exports [` LAGRANGE PRIME NOTATION WITH ARGUMENTS g'(t) - different variable 1` ] = `
472456\\ frac{ \\mathrm {d }} { \\mathrm {d }t } g(t)
473- D((t) |-> g(t), t)
474- ["D", ["Function", ["g", "t"] , "t"], "t"]
457+ D(g(t), t)
458+ ["D", ["g" , "t"], "t"]
475459` ;
476460
477461exports [` MULTIPLE INTEGRALS Double integral 1` ] = `
@@ -612,49 +596,21 @@ D((t) |-> x, t)
612596` ;
613597
614598exports [` NEWTON DOT NOTATION Fourth derivative \\ ddddot{ z } 1` ] = `
615- \\ frac{ \\mathrm {d }} { \\mathrm {d }t } \\ frac{ \\mathrm {d }} { \\mathrm {d }t } \\ frac{ \\mathrm {d }} { \\mathrm {d }t } \\ frac{ \\mathrm {d }} { \\mathrm {d }t } z
616- D((t) |-> D((t) |-> D((t) |-> D((t) |-> z, t), t), t), t)
617- [
618- "D",
619- [
620- "Function",
621- [
622- "D",
623- [
624- "Function",
625- [
626- "D",
627- ["Function", ["D", ["Function", "z", "t"], "t"], "t"],
628- "t"
629- ],
630- "t"
631- ],
632- "t"
633- ],
634- "t"
635- ],
636- "t"
637- ]
599+ \\ frac{ \\mathrm {d }^ {4}} { \\mathrm {d }t ^ {4}} z
600+ D(D(D(D((t) |-> z, t), t), t), t)
601+ ["D", ["D", ["D", ["D", ["Function", "z", "t"], "t"], "t"], "t"], "t"]
638602` ;
639603
640604exports [` NEWTON DOT NOTATION Second derivative \\ ddot{ x } 1` ] = `
641- \\ frac{ \\mathrm {d }} { \\ mathrm { d } t } \\ frac { \\mathrm {d }} { \\ mathrm { d } t } x
642- D((t) |-> D((t) |-> x, t), t)
643- ["D", ["Function", [" D", ["Function", "x", "t"] , "t"], "t"], "t"]
605+ \\ frac{ \\mathrm {d }^ {2} } { \\mathrm {d }t ^ {2} } x
606+ D(D((t) |-> x, t), t)
607+ ["D", ["D", ["Function", "x", "t"], "t"], "t"]
644608` ;
645609
646610exports [` NEWTON DOT NOTATION Third derivative \\ dddot{ y } 1` ] = `
647- \\ frac{ \\mathrm {d }} { \\mathrm {d }t } \\ frac{ \\mathrm {d }} { \\mathrm {d }t } \\ frac{ \\mathrm {d }} { \\mathrm {d }t } y
648- D((t) |-> D((t) |-> D((t) |-> y, t), t), t)
649- [
650- "D",
651- [
652- "Function",
653- ["D", ["Function", ["D", ["Function", "y", "t"], "t"], "t"], "t"],
654- "t"
655- ],
656- "t"
657- ]
611+ \\ frac{ \\mathrm {d }^ {3}} { \\mathrm {d }t ^ {3}} y
612+ D(D(D((t) |-> y, t), t), t)
613+ ["D", ["D", ["D", ["Function", "y", "t"], "t"], "t"], "t"]
658614` ;
659615
660616exports [` REAL WORLD INTEGRALS Integral with non standard typesetting 1` ] = `
0 commit comments