LaTeX to CAS translator

Jump to navigation Jump to search

This mockup demonstrates the concept of TeX to Computer Algebra System (CAS) conversion.

The demo-application converts LaTeX functions which directly translate to CAS counterparts.

Functions without explicit CAS support are available for translation via a DRMF package (under development).

The following LaTeX input ...

{\displaystyle \binom{n}{k} = (-1)^n\, n! \cdot\frac{\sin (\pi k)}{\pi \displaystyle\prod_{i=0}^n (k-i)}.}

... is translated to the CAS output ...

Semantic latex: \binom{n}{k} =(- 1)^n n! \cdot \frac{\sin(\cpi k)}{\cpi \prod_{i=0}^n(k - i)}

Confidence: 0

Mathematica

Translation: Binomial[n,k] == (- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]]

Information

Sub Equations

  • Binomial[n,k] = (- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]]

Free variables

  • k
  • n

Symbol info

  • You use a typical letter for a constant [the imaginary unit == the principal square root of -1].

We keep it like it is! But you should know that Mathematica uses I for this constant. If you want to translate it as a constant, use the corresponding DLMF macro \iunit

  • Pi was translated to: Pi
  • was translated to: *
  • Sine; Example: \sin@@{z}

Will be translated to: Sin[$0] Relevant links to definitions: DLMF: http://dlmf.nist.gov/4.14#E1 Mathematica: https://reference.wolfram.com/language/ref/Sin.html

Tests

Symbolic

Test expression: (Binomial[n,k])-((- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]])

ERROR:

{
    "result": "ERROR",
    "testTitle": "Simple",
    "testExpression": null,
    "resultExpression": null,
    "wasAborted": false,
    "conditionallySuccessful": false
}
Numeric

SymPy

Translation: binomial(n,k) == (- 1)**(n)* factorial(n) *(sin(pi*k))/(pi*Product(k - i, (i, 0, n)))

Information

Sub Equations

  • binomial(n,k) = (- 1)**(n)* factorial(n) *(sin(pi*k))/(pi*Product(k - i, (i, 0, n)))

Free variables

  • k
  • n

Symbol info

  • You use a typical letter for a constant [the imaginary unit == the principal square root of -1].

We keep it like it is! But you should know that SymPy uses I for this constant. If you want to translate it as a constant, use the corresponding DLMF macro \iunit

  • Pi was translated to: pi
  • was translated to: *
  • Sine; Example: \sin@@{z}

Will be translated to: sin($0) Relevant links to definitions: DLMF: http://dlmf.nist.gov/4.14#E1 SymPy: https://docs.sympy.org/latest/modules/functions/elementary.html#sin

Tests

Symbolic
Numeric

Maple

Translation: binomial(n,k) = (- 1)^(n)* factorial(n) *(sin(Pi*k))/(Pi*product(k - i, i = 0..n))

Information

Sub Equations

  • binomial(n,k) = (- 1)^(n)* factorial(n) *(sin(Pi*k))/(Pi*product(k - i, i = 0..n))

Free variables

  • k
  • n

Symbol info

  • You use a typical letter for a constant [the imaginary unit == the principal square root of -1].

We keep it like it is! But you should know that Maple uses I for this constant. If you want to translate it as a constant, use the corresponding DLMF macro \iunit

  • Pi was translated to: Pi
  • was translated to: *
  • Sine; Example: \sin@@{z}

Will be translated to: sin($0) Relevant links to definitions: DLMF: http://dlmf.nist.gov/4.14#E1 Maple: https://www.maplesoft.com/support/help/maple/view.aspx?path=sin

Tests

Symbolic
Numeric

Dependency Graph Information

Includes

Is part of

Complete translation information:

{
  "id" : "FORMULA_00ae67bb12b6cc7a5e24965e1eb06ca5",
  "formula" : "\\binom{n}{k} = (-1)^n n! \\cdot\\frac{\\sin (\\pi k)}{\\pi \\prod_{i=0}^n (k-i)}",
  "semanticFormula" : "\\binom{n}{k} =(- 1)^n n! \\cdot \\frac{\\sin(\\cpi k)}{\\cpi \\prod_{i=0}^n(k - i)}",
  "confidence" : 0.0,
  "translations" : {
    "Mathematica" : {
      "translation" : "Binomial[n,k] == (- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]]",
      "translationInformation" : {
        "subEquations" : [ "Binomial[n,k] = (- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]]" ],
        "freeVariables" : [ "k", "n" ],
        "tokenTranslations" : {
          "i" : "You use a typical letter for a constant [the imaginary unit == the principal square root of -1].\nWe keep it like it is! But you should know that Mathematica uses I for this constant.\nIf you want to translate it as a constant, use the corresponding DLMF macro \\iunit\n",
          "\\cpi" : "Pi was translated to: Pi",
          "\\cdot" : "was translated to: *",
          "\\sin" : "Sine; Example: \\sin@@{z}\nWill be translated to: Sin[$0]\nRelevant links to definitions:\nDLMF:         http://dlmf.nist.gov/4.14#E1\nMathematica:  https://reference.wolfram.com/language/ref/Sin.html"
        }
      },
      "numericResults" : {
        "overallResult" : "SKIPPED",
        "numberOfTests" : 0,
        "numberOfFailedTests" : 0,
        "numberOfSuccessfulTests" : 0,
        "numberOfSkippedTests" : 0,
        "numberOfErrorTests" : 0,
        "wasAborted" : false,
        "crashed" : false,
        "testCalculationsGroups" : [ ]
      },
      "symbolicResults" : {
        "overallResult" : "ERROR",
        "numberOfTests" : 1,
        "numberOfFailedTests" : 0,
        "numberOfSuccessfulTests" : 0,
        "numberOfSkippedTests" : 0,
        "numberOfErrorTests" : 1,
        "crashed" : false,
        "testCalculationsGroup" : [ {
          "lhs" : "Binomial[n,k]",
          "rhs" : "(- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]]",
          "testExpression" : "(Binomial[n,k])-((- 1)^(n)* (n)! *Divide[Sin[Pi*k],Pi*Product[k - i, {i, 0, n}, GenerateConditions->None]])",
          "testCalculations" : [ {
            "result" : "ERROR",
            "testTitle" : "Simple",
            "testExpression" : null,
            "resultExpression" : null,
            "wasAborted" : false,
            "conditionallySuccessful" : false
          } ]
        } ]
      }
    },
    "SymPy" : {
      "translation" : "binomial(n,k) == (- 1)**(n)* factorial(n) *(sin(pi*k))/(pi*Product(k - i, (i, 0, n)))",
      "translationInformation" : {
        "subEquations" : [ "binomial(n,k) = (- 1)**(n)* factorial(n) *(sin(pi*k))/(pi*Product(k - i, (i, 0, n)))" ],
        "freeVariables" : [ "k", "n" ],
        "tokenTranslations" : {
          "i" : "You use a typical letter for a constant [the imaginary unit == the principal square root of -1].\nWe keep it like it is! But you should know that SymPy uses I for this constant.\nIf you want to translate it as a constant, use the corresponding DLMF macro \\iunit\n",
          "\\cpi" : "Pi was translated to: pi",
          "\\cdot" : "was translated to: *",
          "\\sin" : "Sine; Example: \\sin@@{z}\nWill be translated to: sin($0)\nRelevant links to definitions:\nDLMF:  http://dlmf.nist.gov/4.14#E1\nSymPy: https://docs.sympy.org/latest/modules/functions/elementary.html#sin"
        }
      }
    },
    "Maple" : {
      "translation" : "binomial(n,k) = (- 1)^(n)* factorial(n) *(sin(Pi*k))/(Pi*product(k - i, i = 0..n))",
      "translationInformation" : {
        "subEquations" : [ "binomial(n,k) = (- 1)^(n)* factorial(n) *(sin(Pi*k))/(Pi*product(k - i, i = 0..n))" ],
        "freeVariables" : [ "k", "n" ],
        "tokenTranslations" : {
          "i" : "You use a typical letter for a constant [the imaginary unit == the principal square root of -1].\nWe keep it like it is! But you should know that Maple uses I for this constant.\nIf you want to translate it as a constant, use the corresponding DLMF macro \\iunit\n",
          "\\cpi" : "Pi was translated to: Pi",
          "\\cdot" : "was translated to: *",
          "\\sin" : "Sine; Example: \\sin@@{z}\nWill be translated to: sin($0)\nRelevant links to definitions:\nDLMF:  http://dlmf.nist.gov/4.14#E1\nMaple: https://www.maplesoft.com/support/help/maple/view.aspx?path=sin"
        }
      }
    }
  },
  "positions" : [ ],
  "includes" : [ "\\binom{n}{k} = (-1)^n\\, n! \\cdot\\frac{\\sin (\\pi k)}{\\pi \\displaystyle\\prod_{i=0}^n (k-i)}", "k", "n" ],
  "isPartOf" : [ "\\binom{n}{k} = (-1)^n\\, n! \\cdot\\frac{\\sin (\\pi k)}{\\pi \\displaystyle\\prod_{i=0}^n (k-i)}" ],
  "definiens" : [ ]
}

Specify your own input