1.2.2 • Published 2 years ago

@pie-framework/math-validation v1.2.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

math-validation

  • an api
  • a large set of test data
  • aims to determine if two mathematical expressions are equal, either having the same form or not
  • have a public website where you can add some math and check if it works - also the link should be shareable

demo

yarn demo

Then go to http://localhost:$PORT/demo

Tests

yarn jest

Runs all the tests

There is one test that runs fixture data located here: src/fixtures/latex-equal/*.ts. To filter the fixtures you run here you can use the -t flag:

yarn jest src/__tests__/latex-equal.spec.ts -t src/fixtures/latex-equal/7119.ts --reporters default

Next Steps

  • Check that api we expose will support what is needed.
  • Do triage on the test failures, add a note to failing test so we can build a picture of the work needed

Test failure triage

themenotes
latex parsingseems like we aren't able to parse all the inputs in the test cases
math evaluationmath.js is not seeing things as being equal - need more detail on that
incomplete literal supportwe haven't really set up literal options support yet
incorrect test datasometimes the test data is not quite right

Goals

  • we parse from latex -> ast -> mathjs
  • clean up symbolic evaluation (in progress)
  • avoid the use of string manipulation/regex (in progress)
  • more advanced literal validation (todo)
  • block input that is clearly too large/unrelated (eg: a user can type in gobbledy-gook - we should just abort if we see that)

Capabilities

It can determine mathematical equivalence between:

  • linear equations in one variable
  • linear equations in two variables
  • quadratic equations
  • 2-way inequalities in one or two variables
  • compound inequalities in one variable
  • trigonometric identities and functions
  • inverse trigonometric functions
  • similar notation for logarithms and based logarithms

It can also handle degrees, radians and gradians

things that'd be great (but we may have to park until we have more time)

  • a faster latex parser
  • faster math evaluation

Modes

There are 2 modes - literal and symbolic

Literal: is at its most basic a tuned version of a string validation

By default - ignores spaces and parentheses as long as they do not change the meaning of operations (ex. “a+7 +b” will validate against “ ((a) + (7))+b ”) - ignores leading zeros: “0.1” will validate against “.1” - accepts commas for decimal marks. For example “1,000” will be equivalent with 1000

Literal Validation offers two configuration options that can be used to validate some variety of forms for an expression:

Ignore trailing zeros option; allows the evaluation to accept zeros to the right of the decimal place “4.5” will validate against “4.50000000000000” Ignore order option; makes validation indifferent to the variables order, as long as it does not change operations meaning. In this case “a+7 +b*c” will validate against “7 + a+bc”, but not against “ac+7+b”; without it “a+7 +b” will not validate against “7 + a+b”

Symbolic: attempts to decide if expressions are mathematically equivalent or not

By default, it offers all configurations presented for literal validation, exceeding it by quite a lot In order to check equivalence between 2 expressions, we have to reduce both expressions to the simplest one. Then distribute all coefficients, combine any like terms on each side of the expression, and arrange them in the same order.

Notes

  • @babel/runtime is a devDependency if you ever need to link this repo to another package for testing

TODO

  • set up api that is compatible w/ ui component options
  • derivatives kind of work and kind of not - how to use?

CI

We use circleci - see .circleci/config.yml

debugging tests

vscode

add the following to configurations array in launch.json

    {
      "name": "Attach",
      "port": 9229,
      "request": "attach",
      "skipFiles": [
        "<node_internals>/**"
      ],
      "type": "pwa-node"
    }
node --inspect-brk ./node_modules/.bin/jest --runInBand #and any other flags you want

The launch debug using 'Attach' command above.

semantic-release

1.2.2

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.2.1

2 years ago

1.0.8

3 years ago

1.0.8-beta.1

3 years ago

1.0.7-beta.1

3 years ago

1.0.6-beta.1

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.2

3 years ago

1.0.5

3 years ago

1.0.1

3 years ago

1.0.1-beta.1

3 years ago

1.0.0

3 years ago