├── Laboratory
├── Global.asax
├── Fakes
│ └── MathParser.fakes
├── packages.config
├── About.aspx.cs
├── Default.aspx.cs
├── Modules.aspx.cs
├── Site.Master.cs
├── Account
│ ├── ChangePassword.aspx.cs
│ ├── ChangePasswordSuccess.aspx.cs
│ ├── Web.config
│ ├── Login.aspx.cs
│ ├── ChangePasswordSuccess.aspx.designer.cs
│ ├── ChangePasswordSuccess.aspx
│ ├── Register.aspx.cs
│ ├── ChangePassword.aspx.designer.cs
│ ├── Login.aspx.designer.cs
│ ├── Register.aspx.designer.cs
│ └── Login.aspx
├── Module
│ ├── MConverter.aspx
│ ├── MConverter.aspx.cs
│ ├── MConverter.aspx.designer.cs
│ ├── Factorial.aspx.cs
│ ├── Factorial.aspx
│ ├── DataAnalysis
│ │ ├── PolynomSeq.aspx
│ │ ├── LinearRegression.aspx.cs
│ │ ├── PolynomSeq.aspx.designer.cs
│ │ ├── LinearRegression.aspx
│ │ └── PolynomSeq.aspx.cs
│ ├── NumberChecker.aspx
│ ├── NumberChecker.aspx.cs
│ ├── Triangle.aspx.cs
│ ├── Finance
│ │ ├── FinanceFutureValue.aspx.cs
│ │ ├── FinancePresentValue.aspx.cs
│ │ ├── FinanceAnnuityPaymentFutureValue.aspx.cs
│ │ ├── FinanceAnnuityPaymentPresentValue.aspx.cs
│ │ ├── FinancePresentValue.aspx
│ │ ├── FinanceFutureValue.aspx
│ │ ├── FinanceFutureValueOfAnAnnuity.aspx.cs
│ │ ├── FinancePresentValueOfAnAnnuity.aspx.cs
│ │ ├── FinanceFutureValueOfAnAnnuity.aspx
│ │ ├── FinancePresentValueOfAnAnnuity.aspx
│ │ ├── FinanceAnnuityPaymentFutureValue.aspx
│ │ ├── FinanceAnnuityPaymentPresentValue.aspx
│ │ ├── FinanceRemainingBalanceOfAnnuity.aspx.cs
│ │ ├── FinanceNetPresentValue.aspx.cs
│ │ ├── FinanceRemainingBalanceOfAnnuity.aspx
│ │ ├── FinanceNetPresentValue.aspx
│ │ ├── FinanceFutureValue.aspx.designer.cs
│ │ ├── FinancePresentValue.aspx.designer.cs
│ │ ├── FinanceNetPresentValue.aspx.designer.cs
│ │ └── FinanceAnnuityPaymentFutureValue.aspx.designer.cs
│ ├── Uncertainty.aspx
│ ├── Triangle.aspx
│ ├── Converter.aspx
│ ├── Factorial.aspx.designer.cs
│ ├── NumberChecker.aspx.designer.cs
│ ├── Uncertainty.aspx.designer.cs
│ ├── Uncertainty.aspx.cs
│ └── EquationSolver.aspx.cs
├── About.aspx.designer.cs
├── About.aspx
├── Modules.aspx.designer.cs
├── Default.aspx.designer.cs
├── Global.asax.cs
├── Web.Debug.config
├── Web.Release.config
├── Properties
│ └── AssemblyInfo.cs
├── Site.Master.designer.cs
├── Web.config
├── Default.aspx
└── Site.Master
├── Notes
└── Calculus-Derivative
│ ├── x2.fig
│ ├── x2.png
│ ├── exp.png
│ ├── x10.png
│ └── derivativeerror.m
├── ProjectWebsite
├── packages.config
├── Web.Debug.config
├── Web.Release.config
├── Web.config
├── Properties
│ └── AssemblyInfo.cs
├── Default.aspx.designer.cs
└── Default.aspx
├── Interactive Mathematics
├── packages.config
├── Properties
│ ├── Settings.settings
│ ├── Settings.Designer.cs
│ ├── AssemblyInfo.cs
│ └── Resources.Designer.cs
├── App.xaml
├── App.xaml.cs
├── frmTable.xaml.cs
├── frmTable.xaml
└── removedCode.txt
├── Mathos
├── Arithmetic
│ ├── Numbers
│ │ ├── IReal.cs
│ │ ├── IInteger.cs
│ │ ├── INatural.cs
│ │ ├── IRational.cs
│ │ ├── IComplex.cs
│ │ ├── IImaginary.cs
│ │ ├── IIrrational.cs
│ │ ├── IWhole.cs
│ │ ├── Convert.cs
│ │ └── Check.cs
│ └── PhysicalConstants.cs
├── TraceAndTestImpact.testsettings
├── Geometry
│ ├── Shapes
│ │ ├── IShape2D.cs
│ │ ├── IShape3D.cs
│ │ ├── Torus.cs
│ │ └── Ring.cs
│ ├── Pythagorean.cs
│ └── Trigonometry.cs
├── Mathos.vsmdi
├── Properties
│ └── AssemblyInfo.cs
├── SpecialFunctions
│ └── Antiderivatives.cs
├── Converter
│ ├── ConversionObjects.cs
│ └── TemperatureConverter.cs
├── PreCalculus
│ ├── ArithmeticSequence.cs
│ └── GeometricSequence.cs
├── Calculus
│ └── Elementary.Complex.cs
├── LICENSE.md
├── Statistics
│ └── Statistical Distributions
│ │ └── HypergeometricDistribution.cs
└── Algebra.cs
├── MathosTest
├── Geometry
│ └── Trigonometry.cs
├── Arithmetic
│ ├── DecimalArithmetic.cs
│ ├── SingleArthimeticTest.cs
│ └── IntegerArthimeticTest.cs
├── SpecialFunctions
│ ├── Antiderivatives.cs
│ ├── GammaTests.cs
│ └── ElementaryTests.cs
├── Statistics and DiceSim
│ ├── LinearModels.cs
│ └── DiceSimulatorTest.cs
├── VectorTest.cs
├── BenchmarkUtil.cs
├── PreCalculus
│ └── PreCalculus.cs
├── Properties
│ ├── AssemblyInfo.cs
│ └── Resources.Designer.cs
├── Algebra
│ └── EquationSolver.cs
├── Finance.cs
├── SetTest.cs
└── syntaxTest.cs
├── TraceAndTestImpact.testsettings
├── Mathos.vsmdi
├── README.md
└── LICENSE.md
/Laboratory/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Laboratory.Global" Language="C#" %>
--------------------------------------------------------------------------------
/Notes/Calculus-Derivative/x2.fig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MathosProject/Mathos-Project/HEAD/Notes/Calculus-Derivative/x2.fig
--------------------------------------------------------------------------------
/Notes/Calculus-Derivative/x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MathosProject/Mathos-Project/HEAD/Notes/Calculus-Derivative/x2.png
--------------------------------------------------------------------------------
/Laboratory/Fakes/MathParser.fakes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MathosProject/Mathos-Project/HEAD/Laboratory/Fakes/MathParser.fakes
--------------------------------------------------------------------------------
/Notes/Calculus-Derivative/exp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MathosProject/Mathos-Project/HEAD/Notes/Calculus-Derivative/exp.png
--------------------------------------------------------------------------------
/Notes/Calculus-Derivative/x10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MathosProject/Mathos-Project/HEAD/Notes/Calculus-Derivative/x10.png
--------------------------------------------------------------------------------
/Laboratory/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
11 | Your password has been changed successfully. 12 |
13 |9 | This page is designed for users to test all of the features included in Mathos 10 | Core. 11 |
12 |Please visit our about page here!
13 |11 | Factorial is the product of n terms, which usually is written as n!, which is the same as n! = 1 * 2 * ... * (n-1) * n. 12 |
13 | 14 || 17 | Number 18 | | 19 |
20 | |
22 |
26 |
29 |
30 |
33 |
8 | This application allows you to find a polynomial that generated a specific sequence and the closed form of the sum of that polynomial.
9 | 10 |Find the nth term or the expression for the sum
11 | Enter the sequence below. Separate each term by a comma. For example, enter 1,2,3,4,5.
You can access FiniteCalculus class by including Mathos.Calculus.
27 | 28 | 29 | 30 | 31 | 32 ||
13 | |
21 |
22 | |
24 |
28 |
31 |
32 |
35 |
11 | This application allows you to work with uncertainty calcuations. Read the tutorial here. 12 |
13 | 14 |
15 | 1. Copy and paste the desired table in the text area below (for example from Microsoft Excel). Do not include the table headings!
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | 2. Enter the operation you want to perform on the values in the table (for example "x^2").
26 |
27 |
28 |
29 |
30 |
33 |
34 |
35 | 3. When you are ready, press the button!
36 |
39 |
42 |
43 |
46 |
11 | This application allows you to calculate the present value of a future amount of money. Read the wiki here. 12 |
13 | 14 || 17 | Future value 18 | | 19 |
20 | |
22 |
| 25 | Rate of return (%) 26 | | 27 |
28 | |
30 |
| 33 | Number of periods 34 | | 35 |
36 | |
38 |
| 41 | Round to 2 decimal places 42 | | 43 |
44 | |
46 |
50 |
53 |
54 |
11 | This application allows you to calculate the value of an asset at a specific date. 12 | Read the wiki here. 13 |
14 | 15 || 18 | Present value 19 | | 20 |
21 | |
23 |
| 26 | Rate of return (%) 27 | | 28 |
29 | |
31 |
| 34 | Number of periods 35 | | 36 |
37 | |
39 |
| 42 | Round to 2 decimal places 43 | | 44 |
45 | |
47 |
51 |
55 |
56 |
11 | Please provide any information about the triangle:
12 |
15 |
| a | 20 |b | 21 |c | 22 |
|---|---|---|
|
25 | |
27 |
28 | |
30 |
31 | |
33 |
| A | 36 |B | 37 |C | 38 |
|
41 | |
42 |
43 | |
45 |
46 | |
48 |
52 |
55 |
56 |
58 |
11 | This application allows you to calculate the value of a group of payments at a specified date in the future. 12 | Read the wiki here. 13 |
14 | 15 || 18 | Periodic payment 19 | | 20 |
21 | |
23 |
| 26 | Rate per period (%) 27 | | 28 |
29 | |
31 |
| 34 | Number of periods 35 | | 36 |
37 | |
39 |
| 42 | Round to 2 decimal places 43 | | 44 |
45 | |
47 |
51 |
55 |
56 |
11 | This application allows you to calculate the current value of a set of cash flows in the future, given a specified rate of return or discount rate. 12 | Read the wiki here. 13 |
14 | 15 || 18 | Periodic payment 19 | | 20 |
21 | |
23 |
| 26 | Rate per period (%) 27 | | 28 |
29 | |
31 |
| 34 | Number of periods 35 | | 36 |
37 | |
39 |
| 42 | Round to 2 decimal places 43 | | 44 |
45 | |
47 |
51 |
54 |
55 |
11 | This application allows you to calculate the cash flows of an annuity when future value is known. An annuity is denoted as a series of periodic payments. 12 | Read the wiki here. 13 |
14 | 15 || 18 | Future value 19 | | 20 |
21 | |
23 |
| 26 | Rate of return (%) 27 | | 28 |
29 | |
31 |
| 34 | Number of periods 35 | | 36 |
37 | |
39 |
| 42 | Round to 2 decimal places 43 | | 44 |
45 | |
47 |
51 |
54 |
55 |
11 | This application allows you to calculate the periodic payment on an annuity. An annuity is a series of periodic payments that are received at a future date. 12 | Read the wiki here. 13 |
14 | 15 || 18 | Future value 19 | | 20 |
21 | |
23 |
| 26 | Rate of return (%) 27 | | 28 |
29 | |
31 |
| 34 | Number of periods 35 | | 36 |
37 | |
39 |
| 42 | Round to 2 decimal places 43 | | 44 |
45 | |
47 |
51 |
54 |
55 |
11 | This application allows you to calculate the remaining balance at a given time(time n), whether at a future date or at present. 12 | Read the wiki here. 13 |
14 | 15 || 18 | Original value 19 | | 20 |
21 | |
23 |
| 26 | Payment 27 | | 28 |
29 | |
31 |
| 34 | Rate per period (%) 35 | | 36 |
37 | |
39 |
| 42 | Number of periods 43 | | 44 |
45 | |
47 |
| 50 | Round to 2 decimal places 51 | | 52 |
53 | |
55 |
59 |
62 |
63 |
14 | This application allows you to calculate the sum of the present values (PVs) of the individual cash flows of the same entity. 15 | Read the wiki here. 16 |
17 | 18 || 21 | Initial invenstment 22 | | 23 |
24 | |
26 |
| 29 | Cash flow 30 | | 31 |
32 | |
36 |
| 39 | Rate of return (%) 40 | | 41 |
42 | |
44 |
| 47 | Round to 2 decimal places 48 | | 49 |
50 | |
52 |
56 |
59 |
60 |
9 | This application allows you to find a linear relationship between y values and x values.
10 | 11 |Enter the x values
12 | Enter the sequence below. Separate each term by a comma. For example, enter 1,2,3,4,5.
Enter the y values
17 | Enter the sequence below. Separate each term by a comma. For example, enter 1,2,3,4,5.
| Linear equation | 31 ||
| R value | 35 ||
| R squared value | 39 ||
| Regression coefficient (β) | 43 ||
| Intercept | 47 |
11 | At this page you might try out almost all of the great features built into the 12 | Mathos Core library online! 13 |
14 | 15 |
16 | Please navigate to
17 |
22 | Mathos is an open source project, which consists of a core library with many 23 | great features to facilitate mathematical calculations. It can be downloaded 24 | here. 25 |
26 | 27 |28 | Would you like to contribute? Great! Please navigate to our contribution page here! 29 |
30 | 31 |48 |
11 |
45 |
48 |
49 |
51 |
38 | Mathos Parser 39 |
40 | 43 | 44 | 45 |
11 | Please enter your username and password.
12 |
44 |