How to Write Change in Y Symbol (Δy) in LaTeX

In LaTeX, you can write the change in y (Δy) using the \Delta command for the uppercase delta (Δ) and the variable y.

The following examples show how to write Δy in LaTeX.

How to Write Δy in Text

We can use the \Delta command to write Δy in LaTeX document for text.

Suppose we want to write Δy in the text.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

This is an example of using the change in y symbol \(\Delta y\) in a sentence.

\end{document}

Output: 👇️

This is an example of using the change in y symbol Δy in a sentence.

In this example, we use the \Delta command to display the uppercase delta symbol followed by the variable y in the text.

How to Write Δy in Mathematical Expressions

For mathematical expressions, we can use the \Delta command to ensure proper formatting.

Suppose we would like to write mathematical expressions that contain Δy.

We can use the following LaTeX code to do so:

\documentclass{article}
\begin{document}

An inline mathematical expression: \( \Delta y \).

A displayed mathematical expression:
\[
\Delta y = y_2 - y_1
\]

\end{document}

Output: 👇️

Δy

In this example, we use the \Delta command to denote the change in y (Δy) in both inline and displayed mathematical expressions.

Conclusion

We can use the \Delta command followed by the variable y for both text and mathematical expressions.

This ensures that the change in y symbol is properly formatted and displayed in LaTeX document.