Displaying mathematical expressions/equations/arguements

  • Thread starter Thread starter brusier
  • Start date Start date
  • Tags Tags
    Mathematical
AI Thread Summary
The discussion focuses on finding effective ways to display mathematical expressions and equations in a web forum. Users are seeking programs that allow conventional formatting, such as superscripts for exponents and radicals for square roots. Suggestions include using LaTeX for clear mathematical notation, with links to tutorials provided for guidance. It's noted that the forum requires the use of the "tex" tag instead of the typical dollar sign for math mode. Overall, the conversation emphasizes the need for accessible tools to represent mathematical arguments clearly online.
brusier
Messages
27
Reaction score
0
I can see myself utilizing this web forum from time to time to seek advice, opinions, help etc.

Some of this may come in the form of mathemetical expressions or equations.

Is there a good program that allows for data input for mathematical expressions in the conventional format e.g. indicating X^2 by actually placing the 2 on the upper right side of the X. Or, by indicating the sq rt of a value by writing a radical over the expression.

I noticed the icons at the top of the message field and am experimenting with them, but they seem minimal.

X2

anyway, I'm just trying to find a way to easily (relatively) and clearly indicate mathematical expressions and arguements.

thanks.
 
Physics news on Phys.org
http://www.eng.cam.ac.uk/help/tpl/textprocessing/ltxprimer-1.0.pdf

Or just google latex tutorial.
 
Last edited by a moderator:
http://www.artofproblemsolving.com/Wiki/index.php/LaTeX a tutorial that focuses on typing mathematics

You can skip the parts under download and basics and go right to math if you just need to use it on the forum. Note that this forum doesn't recognize $ as a delimiter to start math mode, you'll have to use the "tex" tag.
 
Last edited by a moderator:
\documentclass{article}
\begin{document}
The solution to
\[
\sqrt{x} = 5
\]
is
\[
x=25.
\]
\end{document}
 
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
2x^2 + 3(x-1)(x-2) & = 2x^2 + 3(x^2-3x+2)\\
&= 2x^2 + 3x^2 - 9x + 6\\
&= 5x^2 - 9x + 6
\end{align*}
\end{document}
 
I graduated with a BSc in Physics in 2020. Since there were limited opportunities in my country (mostly teaching), I decided to improve my programming skills and began working in IT, first as a software engineer and later as a quality assurance engineer, where I’ve now spent about 3 years. While this career path has provided financial stability, I’ve realized that my excitement and passion aren’t really there, unlike what I felt when studying or doing research in physics. Working in IT...
Hi everyone! I'm a senior majoring in physics, math, and music, and I'm currently in the process applying for theoretical and computational biophysics (primarily thru physics departments) Ph.D. programs. I have a 4.0 from a basically unknown school in the American South, two REUs (T50 and T25) in computational biophysics and two semesters of research in optics (one purely experimental, one comp/exp) at my home institution (since there aren't any biophysics profs at my school), but no...
Back
Top