-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Fixes binomial coefficients notation as of #83 #113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
$$\sum_{k=0}^n C_n^k 2^k$$ | ||
$$\sum_{k=0}^n {n \choose k 2^k}$$ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix this formula, 2^k is supposed to be outside of binomial coefficient
Is there a specific reason to use both |
@@ -44,6 +44,10 @@ And here is the formula in the separate block: | |||
|
|||
$$E = mc^{2}$$ | |||
|
|||
###Some conventions | |||
|
|||
* We have agreed as of issue [#83](https://github.com/e-maxx-eng/e-maxx-eng/issues/83) to express binomial coefficients with `\binom{n}{k}` or `{n \choose k}` instead of `C_n^k`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd add matching formulas to different expressions, so that it's evident that the difference is in the result of the rendering, not just in formula syntax.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll do a more thorough review later
As far as I know, there is no major difference between them two (maybe when writting complex formulas inside the binomial, which probably won't happen). I'll stick with EDIT: I'll adress the requests soon. |
I changed all the formulas to |
Sorry for the delay in reviewing. The change looks good to me, but now it has accumulated some conflicts. Could you please resolve them? |
No problem, conflicts resolved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thank you!
Also added a note to
contrib.md
. Closes #83