How do I create a sequence of $N = 10$ numbers starting from 0 to $T = 1$ with equal distance between each element in Maple.
How do I obtain this? I am thinking that it could be something like
$$
\left\{ \frac{i - 1}{N - 1} \cdot T \right\}_{i=1}^N
$$
where $T = 1$ and $N = 10$ translated to seq((i-1)*T / (N-1), i=1..N), but it seems a bit complex.
Is this the right way to do it? Does it have a name (e.g. equadistant sequence)?
Also, what would it look like if I wanted if the first number should be different from $0$?
You are looking to create an Arithmetic sequence with a starting term of $a= 0$
since you are adding $10$ terms between them , the last term $1$ is given by;
$1= 0+(N+2-1)d$ $\quad$ where $d$ is the common difference
$d = \frac1{N+1}$
since you are adding $10 $ terms here $N=10$
$\implies d = \frac1{11}$
so the terms are given by $a_n = 0+(n-1)\frac1{11}$
which is $0,\frac1{11},\frac2{11},\frac3{11},\frac4{11}\cdots1$
In general if you want to add $N $ terms between two numbers $a$ and $b$, the common difference is $d= \frac{b-a}{N+1}$
and the terms are $a_n = a+(n-1)\frac{b-a}{N+1}$