a= initial point
b=final point
n= numbers of rectangles
how to find endpoints ?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Let's suppose you are asking how to divide an interval from $a$ to $b$ with $a<b$ into $n$ equal subintervals. Then each subinterval has length $\frac{b-a}{n}$ and the endpoints of the intervals are at $$a+j\frac{b-a}{n} = \dfrac{a(n-j)+bj}{n}$$ with $j=0,1,2,...n$. When $j=0$ this gives $a$, and when $j=n$ it gives $b$. Are you asking something more complicated? |
|||
|
|