That's two (very different) questions in one.
1) To concatenate various LATEX (math) elements, the LatexExp
function is well suited. In your case,
LatexExpr("U(x)="+latex(U))
yelds:
U(x)=Axαyβ.
2) "I would like to print some sentences before to display a result".
Your best bet is to write your text in LATEX, using Sagetex macros to insert relevant Sage snippets and their results.
This needs some learning ; I'd recommend reading "The not so short introduction to LATEX2ϵ" tor deciding if LATEX is for you. If you intend to spend more than a few weeks in your life using mathematics or writing structured texts (i. e. witth explicit outlines, cross-references and/or citations, etc..), it is probably worth it.
An alternative solution is to use Sage's Jupyter notebook. This will allow you to intersspede math or graphics "cells" between tet cells, that can receive some Markdown formatting. Markdown is much lighter than LATEX, therefore faster to learn, and might be sufficient for quick n' dirty tasks. But its possibilities are much more limited.