News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Where can I find a site for math expressions?

Started by xanatose, February 27, 2014, 02:46:06 PM

Previous topic - Next topic

xanatose

I need it as a reference.  (both to read formulas and to express formulas).

For a trivial example: How do you that write that you only want the integer part of x/y?

int c that would be (int)(x/y). But I do not know how to write it when writing a math equation.

TouEnMasm


If you have a c code ,you have also the asm code.
Add /FA in the command line of the c++ compiler and you get an asm file.
Fa is a musical note to play with CL

MichaelW

For your example it depends on what you mean by "integer part".

http://mathworld.wolfram.com/FloorFunction.html

There is an incomplete listing here:

http://en.wikipedia.org/wiki/Table_of_mathematical_symbols


Well Microsoft, here's another nice mess you've gotten us into.

xanatose

Thanks everyone.

@MichaelW Thanks for the link.
Is interesting to know there are different symbols for floor, ceil and round.

(int)(x/y) is the same as floor(x/y) except no function call.


A pity that the table only shows the result of the html and latex symbols. But not the way to write it neither on HTML nor on latex. Neither does it show the Unicode symbol.

Gunther

Hi xanatose,

Quote from: xanatose on March 09, 2014, 06:08:31 PM
A pity that the table only shows the result of the html and latex symbols. But not the way to write it neither on HTML nor on latex. Neither does it show the Unicode symbol.

which symbols would you like to write it with Latex?

Gunther
You have to know the facts before you can distort them.

Tedd

They're represented in HTML simply as Unicode characters.

For a list of Unicode characters, see the "Mathematical Symbols" section: http://www.unicode.org/charts/#symbols (specifically, Mathematical Operators:Floors and Ceilings).

For LaTeX, this covers everything you'll probably need: http://en.wikibooks.org/wiki/LaTeX/Mathematics
Potato2

Gunther

Hi Tedd,

Quote from: Tedd on March 11, 2014, 03:49:37 AM
For LaTeX, this covers everything you'll probably need: http://en.wikibooks.org/wiki/LaTeX/Mathematics

the list gives a good overview, but isn't complete. Thank you.

Gunther
You have to know the facts before you can distort them.

Tedd

Quote from: Gunther on March 12, 2014, 12:09:09 AM
the list gives a good overview, but isn't complete. Thank you.

1. I didn't say it was complete, but "covers everything you'll probably need" -- specifically, for xanatose.
2. There's more.. http://en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics
3. There will never be a complete list. There are far more additional packages than any single reference can document, and there's always the possibility of creating more symbols and notations for yet another newly invented obscure branch of mathematics.
Potato2

TouEnMasm

Fa is a musical note to play with CL