世界の国564520 views
中学理科1630641 views
中学英語811710 views
数学講師2886227 views
高校倫理1440106 views
高校国語788336 views
MathPython497343 views
雑学1473612 views
高校生物551766 views
高校化学2924392 views
Help
Tools
NewsSpreadsheetCalendarSlidesTier ListPen ToolIllustrationCrayonPixel ArtASCII ArtPerspectiveEndless StairsGraphMind MapER DiagramFamily TreeMemeCurved TextImage EditorMosaicRetro FilterPencil SketchOCR/HighlighterMakeup EditorFaviconVideo TrimmerScrolling VideoVideo TitleColor PickerColor ExtractorBonfireFireworksWater RippleWater SplashBreaking GlassWood GrainMarble TextureCSS ButtonIcon MakerBar ChartGrouped Bar ChartStacked Bar ChartPie ChartLine ChartArea ChartStacked Area ChartScatter Plot3D Bar Chart3D Pie ChartBar Chart RaceBubble ChartPopulation PyramidPictogramEarningsCandlestick ChartInvestment RiskMortgage SimulatorCalculatorMatrix CalculatorFunction GraphPolynomial ExpansionVenn DiagramField VisualizerRubik's Cube Group TheoryTraveling SalesmanVoronoi and DelaunayFractalColumn ArithmeticDraw Math FiguresArithmetic AnimationArithmetic Word ProblemsCounting with Tree DiagramsCube NetsCross SectionsMotion PathMechanicsWavesLight and LensesThermodynamicsHow Semiconductors WorkMolecular StructuresAtomic OrbitalsElectrochemical CellsChemical EquilibriumCrystal LatticesBuffer pHComplex IonsDNA Double HelixCell DivisionMembrane ChannelsNerve ImpulseRock ClassificationWeatherConstellationsSolar and Lunar Eclipses3D ModelingFloor PlanSeismic StructuresIntersection TurnMaglevCooking AnimationOrigamiLive Viewer CountGeoJSON MapRailway MapPopulation MapCrime MapLand Price MapSchool MapShrine and Castle MapHouse of Representatives MapWord MapSolitaireReversiHakoiri MusumeChessHamburgerRippleSlide Puzzle MakerNeon PinballNovel MakerJapanese Typing PracticePiano Score EditorMusic Theory

English

LaTeX 微分と偏微分の記号(導関数に値を代入する記法など)

コマンド表示
\dot{x}
\ddot{x}
x^{\prime}
x^{\prime\prime}
f' (x)
f^{\prime}(x)
f^{\prime\prime}(x)
f^{\prime\prime\prime}(x)
f^{(n)}(x)

変数の上にドットという表記は特に物理で使われる。ドットが一個で一階微分、ドットが二個で二階微分。

コマンド表示
\frac{df}{dx}
\frac{d}{dx}f
\frac{d^2 f}{dx^2}
\frac{d^2}{dx^2}f

導関数の をイタリック体にしたくないときは次のようにする。

コマンド表示
\frac{\mathrm{d}f}{\mathrm{d}x}
\frac{\mathrm{d}}{\mathrm{d}x}f
\frac{\mathrm{d}^2 f}{\mathrm{d}x^2}
\frac{\mathrm{d}^2}{\mathrm{d}x^2}f

導関数に値を代入する

\begin{align*}
\frac{df}{dx}(1) &= \frac{df}{dx}|_{x=1} \\
&= \left.\frac{df}{dx}\right|_{x=1}
\end{align*}

| を伸ばすためには left. を使う。ドットを忘れるとエラー。

偏微分

コマンド表示
f_{x}
f_x
f_{xy}

partial を使うと 6 を反対にしたような記号が表示される。

\begin{align*}
\partial_{x} f &= \frac{\partial f}{\partial x} \\
\frac{\partial{f}}{\partial{x}} &= \frac{\partial}{\partial x}f
\end{align*}

ラプラシアンとナブラ

\Delta = \nabla^2 = \sum_{k=1}^{n} \frac{\partial^{2}}{\partial x_{k}^{2}}