nerdamer icon indicating copy to clipboard operation
nerdamer copied to clipboard

a symbolic math expression evaluator for javascript

Results 81 nerdamer issues
Sort by recently updated
recently updated
newest added

I am trying to evaluate a determinant with the following matrix: matrix([4,0,0],[0,1,2],[0,1,-2-j]) It seems that the codeterminant is not being multiplied by 4. I have tested several real valued matrices...

Hello, The below expression generates an error, expecting answer of -0.434 ![image](https://user-images.githubusercontent.com/11023398/140664593-81d42665-ef9e-4234-bf3f-e61e98d1019a.png) Cheers Richard

hi, solve crashes for z^13-1 i.e. `nerdamer("solve(z^13-1,z)")` after a very long time (infinite loop ?) crashes (in fact, no solution after 10 sec) also for : 12,19,20,21 - (22 is...

Is there a way to configure nerdamer to return multiple solutions? For example, when solving x^3 = x, I would like nerdamer to return -1, 0, 1.

i have tried every possible combination of ways to import this that i can think of trying and still cant get any functionality beyond the core. please help

In a physics exercise with g=10 let x = nerdamer("x:420")//distance final x traveled let vx = nerdamer("vx:60")//Initial velocity in x //Find t and H console.log( JSON.stringify( nerdamer.solveEquations(["-5*t^2+H=0","vx=x/t"], ["H","t"]) ) );...

in the expression v:[-5,1] max(v[0],v[1]) expected result: 1 real: -5 is choosing the first argument but in the expression v:[-5,1] v0:v[0] v1:v[1] max(v0,v1) expected result: 1 real: 1 I consider...

Hello, How to pass the output of solve to the function simplify? It is returning an error for me which I think is because the output type is not string...

- The type definitions for the convertFromLatex method is missing from `index.d.ts`. - [Documentation](https://nerdamer.com/functions/nerdamer.convertFromLaTeX.html) incorrectly states that the return type for this method is a `String`, where it should be...

When calculating csc for pi, .evaluate() as shown above works correctly and detects that it is undefined. `nerdamer('csc(pi)').evaluate().text() ` doing this however `nerdamer('csc(pi)', {}, 'numer').text()` incorrectly returns` 8165619676597685`