質問編集履歴
3
説明の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -27,7 +27,11 @@
|
|
27
27
|
#参考質問
|
28
28
|
https://qiita.com/tibigame/items/aebbac176d9bbdaf3d15
|
29
29
|
#公式。やりたいこと
|
30
|
+
条件
|
31
|
+
f(x,y)=(x^2+xy+y^2)log(x^2+y^2) :((x,y)≠(0,0))
|
32
|
+
= 0 :((x,y)=(0,0))
|
30
33
|
|
34
|
+
公式
|
31
35
|
fx(0,0)= lim h->0 ( f(h,0)-f(0,0))/h
|
32
36
|
= lim h->0 ( h^2log(h^2))/h
|
33
37
|
=lim h->0 (-2h) =0
|
2
説明追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -25,4 +25,10 @@
|
|
25
25
|
print('{0}'.format(f_x))
|
26
26
|
```
|
27
27
|
#参考質問
|
28
|
-
https://qiita.com/tibigame/items/aebbac176d9bbdaf3d15
|
28
|
+
https://qiita.com/tibigame/items/aebbac176d9bbdaf3d15
|
29
|
+
#公式。やりたいこと
|
30
|
+
|
31
|
+
fx(0,0)= lim h->0 ( f(h,0)-f(0,0))/h
|
32
|
+
= lim h->0 ( h^2log(h^2))/h
|
33
|
+
=lim h->0 (-2h) =0
|
34
|
+
tex形式で書きたかったのですが分かりづらくて申し訳ありません
|
1
忘れた部分があったから
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,4 +23,6 @@
|
|
23
23
|
#原点でxに関して偏微分する
|
24
24
|
f_x=(aa.subs([(x,h),(y,0)]).trigsimp()-aa.subs([(x,0),(y,0)]).trigsimp())/h
|
25
25
|
print('{0}'.format(f_x))
|
26
|
-
```
|
26
|
+
```
|
27
|
+
#参考質問
|
28
|
+
https://qiita.com/tibigame/items/aebbac176d9bbdaf3d15
|