Byces.Calculator 3.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Byces.Calculator --version 3.1.0
NuGet\Install-Package Byces.Calculator -Version 3.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Byces.Calculator" Version="3.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Byces.Calculator --version 3.1.0
#r "nuget: Byces.Calculator, 3.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Byces.Calculator as a Cake Addin
#addin nuget:?package=Byces.Calculator&version=3.1.0

// Install Byces.Calculator as a Cake Tool
#tool nuget:?package=Byces.Calculator&version=3.1.0

Byces.Calculator

NuGet version

A simple .NET calculator that solves expressions

  1. Usage example
  2. Building expressions
  3. Available operators
  4. Available functions
  5. Available variables
  6. Building your own functions and variables
  7. Benchmark
  8. Future goals
  9. Feedback and bugs

Usage example

ICalculator calculator = new CalculatorBuilder().Build();

string expression = "2 + 5 * 3";
var mathResult = calculator.GetDoubleResult(expression);

if (mathResult.IsValid) // true
{
    Console.WriteLine(mathResult.Result); // 17
}
else
{
    Console.WriteLine(mathResult.ErrorMessage);
}

Building expressions

Before showing some syntax examples, here are some observations:

  • Numbers, variables, operators and functions are not case sensitive
  • The calculator is not sensitive to whitespace by default and using it has a low impact on performance
// You can use signs to represent negative and positive numbers
string expressionExample1 = "-5 + +5";

// You can use parentheses to set priorities in the expression
string expressionExample2 = "((2 + 5) * 2) * 3";

// You can also represent numbers like this
string expressionExample3 = "1E+3";

// This is an expression with two operators and two functions
string expressionExample4 = "fact(2 + 3) * fact3";

// You can also use implicit multiplication
string expressionExample5 = "2(5)";

Available operators

Arithmetic

Operator Description Examples
Add Sums two numeric values x + y or x add y
Subtract Subtracts one numerical value from another x - y or x sub y
Multiply Multiplies two values x * y or x mul y
Divide Divide one number by another x / y or x div y
Power Powers one number by another x ^ y or x pow y
Root Calculates the x root of y x √ y or x rt y
Modulus Returns the remainder of a division x % y or x mod y

Logical and Comparison

Operator Description Examples
And Returns true if both values are true, otherwise false x && y
Or Returns true if any of the values are true x || y
Equal Returns true if the two values have the same value x == y
Not Equal Returns true if the two values are different x != y
Greater Returns true if the first number is greater than the second x > y
Greater Equal Returns true if the first number is greater than or equal to the second x >= y
Less Returns true if the first number is less than the second x < y
Less Equal Returns true if the first number is less than or equal to the second x <= y

Special

Operator Description Examples
Semicolon Does not return any value, it can only be used in functions to pass multiple parameters fun(x; y)

Available functions

Arithmetic

Function Description Examples Parameter limit
Add Sum the numerical values add(x; y; ...) Min: 1 | Max: Undefined
Factorial Calculates the factorial of a number fact(x) Min: 1 | Max: 1
Min Returns the smallest value passed into the function min(x; y; ...) Min: 1 | Max: Undefined
Max Returns the largest value passed into the function max(x; y; ...) Min: 1 | Max: Undefined
Square root Returns the square root of x √x or sqrt(x) Min: 1 | Max: 1
Cube root Returns the cube root of x cbrt(x) Min: 1 | Max: 1
Logarithm (base y) Calculates the logarithm of x (base y) log(x; y) Min: 2 | Max: 2
Logarithm (base 10) Calculates the logarithm of x (base 10) log(x) Min: 1 | Max: 1
Ceiling Returns the ceiling of a number ceil(x) Min: 1 | Max: 1
Floor Returns the floor of a number floor(x) Min: 1 | Max: 1

Logic and Comparison

Function Description Examples Parameter limit
Not Inverts the boolean value !x Min: 1 | Max: 1
If Check the x condition. True returns the y, otherwise the z if(x; y; z) Min: 3 | Max: 3

Trigonometry

Function Description Examples Parameter limit
Cosine Gets the cosine of a number cos(x) Min: 1 | Max: 1
Sine Gets the sine of a number sin(x) Min: 1 | Max: 1
Tangent Gets the tangent of a number tan(x) Min: 1 | Max: 1
Cosine Hyperbolic Gets the cosine hyperbolic of a number cosh(x) Min: 1 | Max: 1
Sine Hyperbolic Gets the sine hyperbolic of a number sinh(x) Min: 1 | Max: 1
Tangent Hyperbolic Gets the tangent hyperbolic of a number tanh(x) Min: 1 | Max: 1
Radian Convert degrees to radians rad(x) Min: 1 | Max: 1
Degree Convert radians to degrees deg(x) Min: 1 | Max: 1

Others

Function Description Examples Parameter limit
Random Same functionality as Random.Next random(x) or random(x; y) Min: 1 | Max: 2

Available variables

Number

Variable Description Examples
Pi Represents the PI value π or pi
Euler Represents the Euler value e or euler
Infinity Represents the Infinity value or infinity
Not a number Represents the 'Not a number' NaN

Boolean

Variable Description Examples
True Represents the boolean true true
False Represents the boolean false false

Building your own functions and variables

Currently the classes you can inherit are: FunctionItem, NumberItem and BooleanItem

Remember that you need to provide the assembly where the custom functions and variables are located

Obs: Currently the library does not support ServiceProvider to construct functions and variables, I don't know when I will implement it, if you want, feel free to send a pull request!

Example

internal sealed class CustomVariable : NumberItem
{
    // You can also add CharRepresentation. Both are optional
    public override string StringRepresentation => "MYCUSTOMVARIABLE";
    
    /*
    * If a variable is constant or a function is pure. You can set this 
    * property to true, this will optimize a calculator that uses the 
    * option to cache expressions
    */
    public override bool Pure => true; // Default is false
    
    public override double GetValue()
    {
        return 10;
    }
}

internal sealed class CustomFunction : FunctionItem
{
    public override char CharRepresentation => '?';
    
    public override int ParametersMin => 1; // Default is 1
    
    public override int ParametersMax => 1; // Default is -1 (No limits)
    
    public override bool Pure => true;
    
    public override Variable Operate(ReadOnlySpan<Variable> variables)
    {
        return 2 * variables[0].Double; // The struct Variable already does the implicit conversion
    }
}

public class Program
{
    public static void Main()
    {
        Type type = typeof(CustomVariable);
        ICalculator calculator = new CalculatorBuilder()
            .WithAssemblies(type.Assembly)
            .Build();

        string expression = "?MyCustomVariable + 10";
        var mathResult = calculator.GetDoubleResult(expression);

        Console.WriteLine(mathResult.Result); // 30
    }
}

Benchmark (one million iterations)

In the Benchmark below, one million iterations were made for each method


BenchmarkDotNet v0.13.12, Arch Linux
AMD Ryzen 5 3500X, 1 CPU, 6 logical and 6 physical cores
.NET SDK 8.0.101
  [Host]     : .NET 8.0.1 (8.0.123.58001), X64 RyuJIT AVX2
  DefaultJob : .NET 8.0.1 (8.0.123.58001), X64 RyuJIT AVX2


Method Options Mean Error StdDev Allocated
NumberOnly Default 99.10 ms 0.493 ms 0.437 ms 147 B
Random Default 359.91 ms 1.155 ms 1.081 ms 736 B
SimpleCalculation Default 248.98 ms 1.602 ms 1.498 ms 245 B
EulerPlusEulerPlusEuler Default 319.00 ms 1.176 ms 1.042 ms 368 B
ComplexCalculation Default 575.21 ms 2.658 ms 2.486 ms 736 B
HeavyCalculation Default 6,008.99 ms 27.029 ms 25.283 ms 736 B
HeavyCalculationNoWhiteSpace Default 5,991.09 ms 18.155 ms 15.160 ms 736 B
ManyParenthesesCalculation Default 1,088.73 ms 5.291 ms 4.949 ms 736 B
FactorialCalculation Default 759.04 ms 4.053 ms 3.791 ms 736 B
SquareRootStringCalculation Default 193.50 ms 1.460 ms 1.365 ms 245 B
SquareRootCharCalculation Default 154.78 ms 1.386 ms 1.296 ms 184 B
AddFunctionCalculation Default 347.05 ms 1.738 ms 1.625 ms 736 B
AddOperationCalculation Default 255.07 ms 0.518 ms 0.485 ms 368 B
NumberOnly CacheExpressions 75.63 ms 0.090 ms 0.080 ms 105 B
Random CacheExpressions 218.22 ms 0.723 ms 0.641 ms 245 B
SimpleCalculation CacheExpressions 105.31 ms 0.124 ms 0.116 ms 147 B
EulerPlusEulerPlusEuler CacheExpressions 136.29 ms 0.445 ms 0.394 ms 184 B
ComplexCalculation CacheExpressions 163.02 ms 1.760 ms 1.560 ms 184 B
HeavyCalculation CacheExpressions 838.20 ms 3.222 ms 3.014 ms 736 B
HeavyCalculationNoWhiteSpace CacheExpressions 822.28 ms 5.415 ms 5.065 ms 736 B
ManyParenthesesCalculation CacheExpressions 749.67 ms 6.583 ms 6.158 ms 736 B
FactorialCalculation CacheExpressions 158.21 ms 1.562 ms 1.461 ms 184 B
SquareRootStringCalculation CacheExpressions 98.32 ms 0.067 ms 0.063 ms 123 B
SquareRootCharCalculation CacheExpressions 111.85 ms 0.100 ms 0.093 ms 147 B
AddFunctionCalculation CacheExpressions 111.88 ms 0.403 ms 0.377 ms 147 B
AddOperationCalculation CacheExpressions 94.51 ms 0.179 ms 0.167 ms 123 B

Expressions

Name Expression
NumberOnly 3
Random random(1; 10)
SimpleCalculation 2 + 5 * 6
EulerPlusEulerPlusEuler EULER + EULER + EULER
ComplexCalculation 2 ^ 2 + (4 + 5 * (2 √ 9))
HeavyCalculation (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9))) / (2 ^ 2 + (4 + 5 * (2 √ 9)))
HeavyCalculationNoWhiteSpace (2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))/(2^2+(4+5*(2√9)))
ManyParenthesesCalculation ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((2 + 2))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))
FactorialCalculation fact2 + (fact2 + fact(fact2 + 2))
SquareRootStringCalculation SQRT9
SquareRootCharCalculation √9
AddFunctionCalculation ADD(1;2;3)
AddOperationCalculation 1+2+3

Future goals

  • Add more functions, variables and operators
  • Try to increase performance

Feedback and Bugs

If you find any bugs or have any suggestions, feel free to send them!

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.3.0 73 4/11/2024
3.2.0 105 3/18/2024
3.1.1 95 2/22/2024
3.1.0 100 2/21/2024
3.0.1 99 1/28/2024
3.0.0 131 9/16/2023
2.0.0 202 3/10/2023
1.1.4 212 2/25/2023
1.1.3 233 2/23/2023
1.1.2 280 1/28/2023
1.1.1 277 1/28/2023
1.1.0 280 1/28/2023
1.0.2 281 1/24/2023
1.0.1 268 1/23/2023
1.0.0 283 1/23/2023