Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert math formulas to algorithm [closed]

Tags:

.net

math

I would like to study how to convert some math formulas i.e.

http://www.mathportal.org/calculus/integrals/integration-formulas-exercises.php into C#/VB.NET code.

Are there any resources to study about it?

like image 494
Friend Avatar asked Dec 16 '13 16:12

Friend


2 Answers

In terms of solving, or typesetting, or.... ?

You might like Lehman's "Math for CS" book just google the title, it's available as a PDF online.

like image 126
bjorke Avatar answered Oct 24 '22 00:10

bjorke


A highly-rated Code Project article addresses exactly this question - converting mathematical formulas to C#.

The article describes a formula-to-code converter, representing the formulas in MathML then converting them to C#.

Source code for the converter is available for download and may prove helpful on your quest.

like image 36
J0e3gan Avatar answered Oct 24 '22 00:10

J0e3gan