I want to draw this scheme, but I do not know how to start. Please help me.

I want to draw this scheme, but I do not know how to start. Please help me.

Is (local) layout important?
Typesetting polynom division can easy be done with the polynom package:
\documentclass{article}
\usepackage{polynom}
\begin{document}
\textbf{Style A:}\par % this is the default
\polylongdiv[style=A]{6x^3-2x^2+x+3}{x^2-x+1}
\textbf{Style B:}\par
\polylongdiv[style=B]{6x^3-2x^2+x+3}{x^2-x+1}
\textbf{Style C:}\par
\polylongdiv[style=C]{6x^3-2x^2+x+3}{x^2-x+1}
\textbf{Style D:}\par
\polylongdiv[style=D]{6x^3-2x^2+x+3}{x^2-x+1}
\end{document}
I'm afraid I didn't try to change layout (yet), but that will be another question...
polynom can't create output exactly like your picture. It has three ways of representing polynomial division, examples of which you can see in polydemo.pdf, that I linked to in my comment to your question.
– Torbjørn T.
Oct 27 '12 at 08:15
polynom package is what you need. \polylongdiv[style=D]{6x^3-2x^2+x+3}{x^2-x+1}
– mac
Feb 24 '18 at 23:20
\polyset{vars=XYZT} to use X, Y, Z, and T as variables. But I believe that each polynomial should use only one of those variables.
– Fabricio
Apr 18 '21 at 16:59
Since the structure lends itself to an array, here is such an elementary implementation:

\documentclass{article}
\newcommand{\dropsign}[1]{\smash{\llap{\raisebox{-.5\normalbaselineskip}{$#1$\hspace{2\arraycolsep}}}}}%
\begin{document}
\[
\begin{array}{r|r}
\dropsign{-} 6x^3 - 2x^2 + \phantom{6}x + 3 & x^2 - \phantom{6}x + 1 \\ \cline{2-2}
6x^3 - 6x^2 + 6x \phantom{{}+3} & 6x + 4 \\ \cline{1-1} \\[\dimexpr-\normalbaselineskip+\jot]
\dropsign{-} 4x^2 - 5x + 3 \\
4x^2 - 4x + 4 \\ \cline{1-1} \\[\dimexpr-\normalbaselineskip+\jot]
- x - 1
\end{array}
\]
\end{document}
For fun with TikZ.
Explanation: \phantom is used to vertically align x, x^2, x^3, etc.
\documentclass[tikz,border=5mm]{standalone}
\begin{document}
\begin{tikzpicture}[yscale=.5]
\def\c{2}
\draw[blue,thick]
(0,.5)--+(-90:5)
(0,-.5)--+(0:2)
(0,-1.5)--+(180:3)
(0,-3.5)--+(180:2);
\path[left]
(0,0) node{$6x^3-2x^2+\phantom{6}x+3$}
++(-90:1) node{$6x^3-6x^2+6x\phantom{{}+3}$}
++(-90:1) node{$4x^2-5x+3$}
++(-90:1) node{$4x^2-4x+4$}
++(-90:1) node{$-x-1$};
\path[left,magenta]
(0,-.5) +(180:.2) node{$-$\phantom{$6x^3-2x^2+\phantom{6}x+3$}}
(0,-2.5) +(180:.2) node{$-$\phantom{$4x^2-5x+3$}};
\path[left]
(\c,0) node{$x^2-\phantom{6}x+1$}
+(-90:1) node{$6x+4$};
\end{tikzpicture}
\end{document}
\phantom. Just tell me if you need more explain
– Black Mild
Aug 15 '19 at 04:13
This is an old question. Now, you can use tabularray
\documentclass[border=2mm]{standalone}
\usepackage{tabularray}
\usepackage{ninecolors}
\begin{document}
\begin{tblr}{
colspec={rrrrrrrr|rrrrr},
cells={mode=dmath},
colsep = .5mm }
\SetCell[r=2]{fg=red}-
& 6x^3 & - & 2x^2 & + & x & + & 3 & x^2 & - & x & + & 1 \\
\SetHline{9-13}{blue,0.5pt}
& 6x^3 & - & 6x^2 & + & 6x & & & & & 6x & + & 4 \\
\SetHline{2-8}{blue,0.5pt}
%or \cline{2-8}
\SetCell[r=2,c=3]{fg=red}-
& & & 4x^2 & - & 5x & + & 3 & & & & & \\
& & & 4x^2 & - & 4x & + & 4 & & & & & \\
\SetHline{4-8}{blue,0.5pt}
%\cline{4-8}
& & & & - & x & - & 1 & & & & & \\
\end{tblr}
\end{document}
polynompackage? See the manual and the demofile, polydemo.pdf. – Torbjørn T. Oct 26 '12 at 15:41TikZto typeset a polynomial division problem? – Andrew Uzzell Oct 26 '12 at 19:46