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...") |
No edit summary |
||
Line 11: | Line 11: | ||
| | | | ||
3= | 3= | ||
| | |||
4= | |||
[[differential]] [[DIFFERENTIATE]] [[PDIFFERENTIATE]] | |||
}} | }} | ||
[[Category:Element]] | [[Category:Element]] |
Revision as of 15:45, 2 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.