Math, asked by omkarshivasharan8, 28 days ago


fin d \: the \: product \: of \: 3x {y}^{2}  \: and \: 4 {x}^{2} y

Answers

Answered by ssarkar110305
1

Answer:

the product of 3xy² and 4x²y is 12x^3y^3

Answered by Anonymous
0

Answer:

This article will detail how to work with math mode in LaTeX and how to display equations, formulas, and mathematical expressions in general.

Contents

1 Math Mode

2 Display Math

3 Display Style (\displaystyle)

4 Aligning Equations (align)

5 Additional Packages

6 See Also

Math Mode

LaTeX uses a special math mode to display mathematics. To place something written in TeX in math mode, use $ signs to enclose the math you want to display. For example, open a new source file in TeXnicCenter and type or copy/paste the following:

\documentclass{article}

\begin{document}

The solution to $\sqrt{x}=5$ is $x=25$.

\end{document}

Save the document (press Ctrl-S or click File, then Save) as 'mymath' (don't include the quote marks in the name) in a folder of your choice. The file will appear in your folder as 'mymath.tex.'

Compile the document just as you compiled your first document. When you view the output file, you should see

Mathsamp1.gif

If you remove the $ symbols from your source file then try to compile, you should get 'Missing $ inserted' error messages in the Output window of TeXnicCenter (try it and see - you may have to scroll up in the Output window to see the errors).

Nearly all mathematical items, such as variables, expressions, equations, etc., should be written in math mode. In fact, most math will generate errors if you don't remember to put it in math mode.

Display Math

As we saw above, when using $...$ to typeset math, the resulting math expression appears in-line. Sometimes, we may wish to display a mathematical expression on its own line. To do so, we use \[math stuff here\] or $$math stuff here$$ (the former is usually preferred now) to put the expression in display math mode:

\documentclass{article}

\begin{document}

The solution to \[\sqrt{x} = 5\] is \[x=25.\]

\end{document}

After you compile this and view it, you should see:

Mathsamp2.gif

Notice that the equations are on their own lines and are centered. As a matter of style, usually we put this display math on their own lines in the source file, like this:

\documentclass{article}

\begin{document}

The solution to

\[

\sqrt{x} = 5

\]

is

\[

x=25.

\]

\end{document}

Similar questions