Graphical Expression Rendering

Algebra ->  Graphical Expression Rendering -> Graphical Expression Rendering     (Log On)

   
Plot a formula
 | Expression Simplifier in action | 

Welcome to Algebra.Com's Expression Rendering Service. Let's say that you have a web page that needs complicated formulas. As you know, displaying formulae in web pages is a pain.

This site is an attempt to help all such sites render formulas. You have two methods of generating formulas:

  • For static content:(webpages that do not change over time) visit this page (bookmark it) and type your formula in the box below. Right-click on the generated image and save it on your hard drive. Then refer to it as you would refer to any other image, via the IMG SRC tag.
  • For dynamic content:(generated by user request "on the fly") you can generate your IMG SRC tags on the fly. You should call script http://www.algebra.com/cgi-bin/plot-formula.mpl. You also have to add a question mark to it and then "expression=" and URLEncoded parameter expression. Example of pseudocode:
          url_base = "http://www.algebra.com/cgi-bin/plot-formula.mpl";
          expression = "ax^2+bx+c";
          full_url = url_base + "?expression=" + encode_url( expression )
    
          print "<IMG SRC=" + full_url + ">"
    

See this extensive page on help with formulas.

Here, you can type in your expression. Use sqrt for square root. See the help section below.
Enter Expression:
The result would be something like the picture on top of this page.

Help:

Please write to Igor Chudov, ichudov @ algebra.com, with questions or suggestions.

Algebra.Com's Home Page