13

I was working today and had to calculate the Hessian of a matrix, then I wondered a Hessian function might already exist. I typed Hessian and it does exist, but there's no documentation (neither online nor software embedded) that explains what the heck this function is. ?Hessian confirms the tag is protected and that it must do something. I'm curious now... Does anyone know what's going on?

P.S.: I'm using Mathematica 10.

P.S.2: I know how to calculate an Hessian.

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
QuantumBrick
  • 499
  • 2
  • 9

1 Answers1

12

The Mathematica documentation for FindMaxValue includes the example

FindMaxValue[Sin[x] Sin[2 y], {x, y}, 
 Gradient -> {Cos[x] Sin[2 y], 2 Cos[2 y] Sin[x]}, 
 Method -> {"Newton", 
   Hessian -> {{-Sin[x] Sin[2 y], 
      2 Cos[x] Cos[2 y]}, {2 Cos[x] Cos[2 y], -4 Sin[x] Sin[2 y]}}}]

which includes a reference to Hessian as part of the Method. I believe that this (and probably other similar usages) will cause it to appear as a symbol in the "System" context.

mattiav27
  • 6,677
  • 3
  • 28
  • 64
mikado
  • 16,741
  • 2
  • 20
  • 54