質問するログイン新規登録

質問編集履歴

3

説明の追加

2020/08/11 03:08

投稿

himazin392
himazin392

スコア7

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

説明追加

2020/08/11 03:08

投稿

himazin392
himazin392

スコア7

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

忘れた部分があったから

2020/08/11 03:00

投稿

himazin392
himazin392

スコア7

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