1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
% AUTHOR: Amlal El Mahrouss
% PURPOSE: WG04.2: Sum Analysis.
\documentclass[11pt, a4paper]{article}
\usepackage{graphicx}
\usepackage{listings}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{mathtools}
\usepackage[margin=0.5in,top=1in,bottom=1in]{geometry}
\title{Sum Analysis for Integrals.}
\author{Amlal El Mahrouss\\\texttt{amlal@nekernel.org}}
\date{February 2026}
\begin{document}
\maketitle
\begin{abstract}
The paper covers several definitions that are made to be used for sum analysis; their purpose has been kept abstract for flexibility reasons.
\end{abstract}
\begin{center}
\rule[0.01cm]{17cm}{0.01cm}
\end{center}
\section{DEFINITIONS}
We assume $x \in \mathbb{R}, \quad a, b \in \mathbb{N}, \quad b > a > 0$ for:
\subsection{DEFINITION OF THE S-INTEGRAL:}
\begin{equation}
I_{1}(a, b, u, n) \coloneqq \int_{a}^{b} \Phi(t, u, n)dt
\end{equation}
\subsection{DEFINITION OF THE $\Phi$-FUNCTION:}
\begin{equation}
\Phi(t, u, n) = \sum_{k=1}^{n} (\frac{dt}{du}\cdot u), \quad t > 0, \quad n > k
\end{equation}
\section{INTRODUCTION}
\section{LEMMAS}
\section{CONCLUSION}
\section{REFERENCES}
\end{document}
|