[Tex/LaTex] How to write this equation in LaTeX

equationsmath-mode

Image of equation

I’m still a beginner to LaTeX, and I don’t know how to write this equation.

Best Answer

Welcome to the site. We will appreciate the questions that have a minimal working example (code) that shows the efforts you have already put. Asking somebody to do things is frowned upon here. If you have no idea of how to start, you may put the following as a MWE

\documentclass{article}
\begin{document}
  %equation here
\end{document}

and ask for the equation code. Since this is your first question, here is the code for the equation you requested and this should get you started.

\documentclass{article}
\usepackage{mathtools}  %% gives more goodies for typing mathematics
\begin{document}
  \begin{equation}
    \hat{b}_k = \frac{2\tau - \Delta_k}{2\tau + \Delta_k}\hat{b}_{k-1} + \frac{\Delta_k}{2\tau + \Delta_k}(b_k + \hat{b}_{k-1})
  \end{equation}
\end{document}

enter image description here

Related Question