Partial: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Keyword | <code>partial ( expression )</code> | 2= Create a partial differential, e.g. <code>partial x</code>. Please keep in mind that though you can handle this object...") |
mNo edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
| | | | ||
2= | 2= | ||
Create a partial differential, e.g. <code>partial x</code>. Please keep in mind that though you can handle this object like a symbol, it does not always make mathematical sense! | Create a partial differential, e.g. <code>partial(x)</code>. Please keep in mind that though you can handle this object like a symbol, it does not always make mathematical sense! | ||
If you want to create a partial differential of a [[FUNCTION|function]] <code>f</code> (i.e. <code>partial f / partial x</code>), use <code>[[PDIFFERENTIATE]](f,x,1)</code>. iMath will automatically separate this into two differentials <code>partial f</code> and <code>(partial x)^{-1}</code>, but will mark them as being connected, so that on printing they can be displayed correctly. | If you want to create a partial differential of a [[FUNCTION|function]] <code>f</code> (i.e. <code>partial(f) / partial(x)</code>), use <code>[[PDIFFERENTIATE]](f,x,1)</code>. iMath will automatically separate this into two differentials <code>partial(f)</code> and <code>(partial(x))^{-1}</code>, but will mark them as being connected, so that on printing they can be displayed correctly. | ||
In other words, you should only use <code>partial</code> when it is really necessary. | In other words, you should only use <code>partial</code> when it is really necessary. | ||
| | | | ||
3= | 3= | ||
| | |||
4= | |||
[[differential]] [[DIFFERENTIATE]] [[PDIFFERENTIATE]] | |||
}} | }} | ||
[[Category:Element]] | [[Category:Element]] |
Latest revision as of 15:28, 4 July 2017
Syntax
partial ( expression )
Implemented in iMath since version 2.2.0 or earlier.
Explanation
Create a partial differential, e.g. partial(x)
. Please keep in mind that though you can handle this object like a symbol, it does not always make mathematical sense!
If you want to create a partial differential of a function f
(i.e. partial(f) / partial(x)
), use PDIFFERENTIATE(f,x,1)
. iMath will automatically separate this into two differentials partial(f)
and (partial(x))^{-1}
, but will mark them as being connected, so that on printing they can be displayed correctly.
In other words, you should only use partial
when it is really necessary.