2

I've seen this formula

$$1RM = \frac{100 \cdot w}{48.8 + 53.8 \cdot e^{-0.075 \cdot r}}$$

but I don't know what does the $e$ means.

The $w$ stands for weight. The $r$ for repetitions but I think the $e$ is from scientific notication but i'm not sure.

Bob Happ
  • 582
Lothre1
  • 145

2 Answers2

5

$\phantom{1233976327891467283146327864786231476892364983216468236874}$ $$\huge e$$

Surb
  • 55,662
  • 1
    Extracted sentences from the link: The number $e$ is an important mathematical constant that is the base of the natural logarithm. We have $$ e= \sum_{n=0}^\infty \frac{1}{n!}=\lim_{n\to \infty}\Big(1+\frac{1}{n}\Big)^n\approx 2.71828$$ Sometimes called Euler's number after the Swiss mathematician Leonhard Euler. Also known as Napier's constant, but Euler's choice of the symbol $e$ is said to have been retained in his honor.The number $e$ is of eminent importance in mathematics. Like the constant $\pi$, $e$ is irrational: it is not a ratio of integers; and it is transcendental. – Surb Aug 24 '15 at 10:46
  • 1
    I think that should probably be in the answer, not a comment. – Patrick Stevens Aug 24 '15 at 10:48
  • @PatrickStevens I agree with you, but I like this idea to an answer with a single character (not often possible). However, I thought it is worth to extract a few informations from the link in case the link gets broken (although this is a wikipedia link which is unlikely to disappear). To cite Did:
    "OK, I confess: I always dreamt of reading/posting an answer with only one character... so I could not resist the occasion."
    – Surb Aug 24 '15 at 10:51
  • 1
    Nicely done. Still, I hope this doesn't get as many upvotes as Did's one-letter answer, that would be a bad incentive for future answerers ;) – Daniel Fischer Aug 24 '15 at 10:57
2

$e\approx2.7182818284\dots$ is an irrational number. It has several representations. I'll give a few representation, along with a slight generalization.


\begin{align} e=\lim_{n\to\infty}\left(1+\frac1n\right)^n\\ e^x=\lim_{n\to\infty}\left(1+\frac xn\right)^n \end{align} This is the usual definition. The $\lim$ sign means, roughly, that you let $n$ get larger and larger. For example, $(1+\frac1{1000})^{1000}=2.7169\dots\approx e$, and you get better and better approximations as $n$ gets bigger. To prove the second thing from the first one, replace $n$ with $\frac nx$, and notice that $\frac nx\to\infty$ means the same thing as $n\to\infty$ (when $x$ is positive, at least. It works for negative $x$, too, though).


\begin{align} e&=\frac1{0!}+\frac1{1!}+\frac1{2!}+\frac1{3!}+\dotsb\\ e^x&=\ 1\ +\ x\ +\frac{x^2}{2!}+\frac{x^3}{3!}+\dotsb \end{align} Remember that $0!=1$. You can try to prove this from the first set of equalities and the binomial formula. That's how Euler did it. (If you want to be rigorous, though, you need more effort. Euler was never very rigorous in this sort of thing.)


\begin{align} \int_1^e\frac1x\operatorname d\!x&=1\\ \int_1^t\frac1x\operatorname d\!x&=\log_e(t) \end{align} I need to explain the notation. The shape surrounded by the curve $y=\frac1x$, the vertical lines $x=1$ and $x=e$, and the $x$-axis has area $1$. More generally, the shape bounded by $\frac1x$, $x=1$, $x=t$, and the $x$-axis has area $\log_e(t)$. I won't prove this here.


And my favorite characterization: $e$ is the unique number that satisfies: $$e^x\ge x+1$$ for all $x$.

  • +1 for your favorite characterization. While $e^x\geq x+1$ for every $x$ is clear to me, I'd be very interested in seeing a proof that $a^x\geq x+1$ for every $x$ implies $a=e$. – Surb Aug 25 '15 at 10:26
  • 1
    @Surb Here's one: Notice that $x^{1/x}$ has a unique maximum at $x=e$ (Steiner's problem). It can be shown using just a few algebraic manipulations that $a^x\ge x+1$ implies that $a$ is a global maximum of $x^{1/x}$ (hint: substitute $x\mapsto\frac xa-1$ into the inequality), which means that $a=e$. – Akiva Weinberger Aug 25 '15 at 14:48