Partial: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 6: | Line 6: | ||
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. |
Revision as of 15:26, 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.