| 1 | initial version |
See the documentation of integrate:
To prevent automatic evaluation use the
holdargument.
Indeed,
sage: var('alpha beta x')
sage: denom = integral(x**(alpha-1) * (1-x)**(beta-1), x, hold=True)
sage: diff(denom,x)
x^(alpha - 1)*(-x + 1)^(beta - 1)
| 2 | No.2 Revision |
See the documentation of :integrateintegral
To prevent automatic evaluation use the
holdargument.
Indeed,
sage: var('alpha beta x')
sage: denom = integral(x**(alpha-1) * (1-x)**(beta-1), x, hold=True)
sage: diff(denom,x)
x^(alpha - 1)*(-x + 1)^(beta - 1)
| 3 | No.3 Revision |
See the documentation of integral:
To prevent automatic evaluation use the
holdargument.
Indeed,
sage: var('alpha beta x')
sage: denom = integral(x**(alpha-1) * (1-x)**(beta-1), x, hold=True)
hold=True); denom
integrate(x^(alpha - 1)*(-x + 1)^(beta - 1), x)
sage: diff(denom,x)
x^(alpha - 1)*(-x + 1)^(beta - 1)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.