Symbolism icon indicating copy to clipboard operation
Symbolism copied to clipboard

Computer Algebra and Symbolic Computation in C#

Results 13 Symbolism issues
Sort by recently updated
recently updated
newest added

The nuget package looks like Apache 2.0, consider pushing that to the license file in the repo too?

``` using System; using Symbolism; using Symbolism.AlgebraicExpand; namespace my { public class My { static void Main(string[] args) { var C = new Symbol("C"); var x = new Symbol("x"); var...

Hello, I noticed a trigo function is missing : arccos, while the arcsin (asin) function is present. Do there is a particular reason for this ? Thanks, Sylvain ![acos](https://user-images.githubusercontent.com/12117266/59920678-92dd6c00-942b-11e9-93ac-6fb07860be0e.PNG)

Is there already a way in which I can create an equation using a string rather than static typing it. As an update, I have created a small helper using...

Nice library. I'd like to play with it a bit, but don't have VS 2015 to build it.

I've wrote some code using Symbolism. It is interesting enough to be shared. It is not ready to be integrated and I don't have time to finish it. So I...

I find .Simplify() method quite inconvenient: it is not a part MathObject, it is a part of Sum and Product classes (and maybe some others). It'd be more convenient to...

In `Cos.CosProc()` should ``` if (n == 2) { if (Mod(k, 2) == 1) return 0; } ``` be ``` if (n == 2) { if (Mod(k, 4) == 1)...