


\input amstex
\input amssym.tex
\input amssym
%\input psbox.tex

%
%              %%%%%%%    %%%%%        %%%%%%    %%%%%   %     %
%              %      %  %             %     %  %     %   %   %
%              %      %  %             %     %  %     %    % %
%              %%%%%%%    %%%%%        %%%%%%   %     %     %
%              %               %       %     %  %     %    % %
%              %               %       %     %  %     %   %   %
%              %         %%%%%%        %%%%%%    %%%%%   %     %
%
%              By Jean Orloff
%              Comments & suggestions by e-mail: ORLOFF@surya11.cern.ch
%              No modification of this file allowed if not e-sent to me.
%
% A simple way to measure the size of encapsulated postscript figures
%   from inside TeX, and to use it for automatically formatting texts
%   with inserted figures. Works both under Plain TeX-based macros
%   (Phyzzx, Harvmac, Psizzl, ...) and LaTeX environment.
% Provides exactly the same result on any PostScript printer provided
%   the single instruction \psfor... is changed to fit the needs of the
%   particular dvi->ps translator used.
% History:
%   1.31: adds \psforDVIALW(?)
%   1.30: adds \splitfile & \joinfiles for multi-file management
%   1.24: fix error handling & add \psonlyboxes
%   1.23: adds \putsp@ce for OzTeX fix
%   1.22: makes \drawingBox \global for use in Phyzzx
%   1.21: accepts %%BoundingBox: (atend)
%   1.20: tries to add \psfordvitps for the TeXPS package.
%   1.10: adds \psforoztex, error handling...
%2345678 1 2345678 2 2345678 3 2345678 4 2345678 5 2345678 6 2345678 7 23456789
%
\def\temp{1.31}
\let\tempp=\relax
\expandafter\ifx\csname psboxversion\endcsname\relax
  \message{version: \temp}
\else
    \ifdim\temp cm>\psboxversion cm
      \message{version: \temp}
    \else
      \message{psbox(\psboxversion) is already loaded: I won't load
        psbox(\temp)!}
      \let\temp=\psboxversion
      \let\tempp=\endinput
    \fi
\fi
\tempp
\let\psboxversion=\temp
\catcode`\@=11
% Every macro likes a little privacy...
%
% Some common defs
%
\def\execute#1{#1}% NOT stupid: cs in #1 are then identified BEFORE execution
\def\psm@keother#1{\catcode`#112\relax}% borrowed from latex
\def\executeinspecs#1{%
\execute{\begingroup\let\do\psm@keother\dospecials\catcode`\^^M=9#1\endgroup}}
%
%Trying to tame the variety of \special commands for Postscript: the
%  universal internal command \PSspeci@l##1##2 takes ##1 to be the
%  filename and ##2 to be the integer scale factor*1000 (as for usual
%   TeX \scale commands)
%
\def\psfortextures{%     For TeXtures on the Macintosh
%-----------------
\def\PSspeci@l##1##2{%
\special{illustration ##1\space scaled ##2}%
}}
%
\def\psfordvitops{%      For the DVItoPS converter on IBM mainframes
%----------------
\def\PSspeci@l##1##2{%
\special{dvitops: import ##1\space \the\drawingwd \the\drawinght}%
}}
%
\def\psfordvips{%      For DVIPS converter on VAX, UNIX and PC's
%--------------
\def\PSspeci@l##1##2{%
%    \special{/@scaleunit 1000 def}% never read dox without trying!
\d@my=0.1bp \d@mx=\drawingwd \divide\d@mx by\d@my%
\special{PSfile=##1\space llx=\psllx\space lly=\pslly\space%
urx=\psurx\space ury=\psury\space rwi=\number\d@mx}%
}}
%
\def\psforoztex{%        For the OzTeX shareware on the Macintosh
%--------------
\def\PSspeci@l##1##2{%
\special{##1 \space
      ##2 1000 div dup scale
      \putsp@ce{\number-\psllx} \putsp@ce{\number-\pslly} translate
}%
}}
\def\putsp@ce#1{#1 }
%
\def\psfordvitps{%       From the UNIX TeXPS package, vers.>3.12
%---------------
% Convert a dimension into the number \psn@sp (in scaled points)
\def\psdimt@n@sp##1{\d@mx=##1\relax\edef\psn@sp{\number\d@mx}}
\def\PSspeci@l##1##2{%
% psfig.psr contains the def of "startTexFig": if you can locate it
% and include the correct pathname, it should work
\special{dvitps: Include0 "psfig.psr"}% contains def of "startTexFig"
\psdimt@n@sp{\drawingwd}
\special{dvitps: Literal "\psn@sp\space"}
\psdimt@n@sp{\drawinght}
\special{dvitps: Literal "\psn@sp\space"}
\psdimt@n@sp{\psllx bp}
\special{dvitps: Literal "\psn@sp\space"}
\psdimt@n@sp{\pslly bp}
\special{dvitps: Literal "\psn@sp\space"}
\psdimt@n@sp{\psurx bp}
\special{dvitps: Literal "\psn@sp\space"}
\psdimt@n@sp{\psury bp}
\special{dvitps: Literal "\psn@sp\space startTexFig\space"}
\special{dvitps: Include1 "##1"}
\special{dvitps: Literal "endTexFig\space"}
}}
\def\psforDVIALW{%   Try for dvialw, a UNIX public domain
%---------------
\def\PSspeci@l##1##2{
\special{language "PS"
literal "##2 1000 div dup scale"
include "##1"}}}
\def\psonlyboxes{%     Draft-like behaviour if none of the others works
%---------------
\def\PSspeci@l##1##2{%
\at(0cm;0cm){\boxit{\vbox to\drawinght
  {\vss
  \hbox to\drawingwd{\at(0cm;0cm){\hbox{(##1)}}\hss}
  }}}
}%
}
%
\def\psloc@lerr#1{%
\let\savedPSspeci@l=\PSspeci@l%
\def\PSspeci@l##1##2{%
\at(0cm;0cm){\boxit{\vbox to\drawinght
  {\vss
  \hbox to\drawingwd{\at(0cm;0cm){\hbox{(##1) #1}}\hss}
  }}}
\let\PSspeci@l=\savedPSspeci@l% restore normal output for other figs!
}%
}
%
%\def\psfor...  add your own!
%
%  \ReadPSize{PSfilename} reads the dimensions of a PostScript drawing
%      and stores it in \drawinght(wd)
\newread\pst@mpin
\newdimen\drawinght\newdimen\drawingwd
\newdimen\psxoffset\newdimen\psyoffset
\newbox\drawingBox
\newif\ifNotB@undingBox
\newhelp\PShelp{Proceed: you'll have a 5cm square blank box instead of
your graphics (Jean Orloff).}
\def\@mpty{}
\def\s@tsize#1 #2 #3 #4\@ndsize{
  \def\psllx{#1}\def\pslly{#2}%
  \def\psurx{#3}\def\psury{#4}%  needed by a crazyness of dvips!
  \ifx\psurx\@mpty\NotB@undingBoxtrue% this is not a valid one!
  \else
    \drawinght=#4bp\advance\drawinght by-#2bp
    \drawingwd=#3bp\advance\drawingwd by-#1bp
%  !Units related by crazy factors as bp/pt=72.27/72 should be BANNED!
  \fi
  }
\def\sc@nline#1:#2\@ndline{\edef\p@rameter{#1}\edef\v@lue{#2}}
\def\g@bblefirstblank#1#2:{\ifx#1 \else#1\fi#2}
\def\psm@keother#1{\catcode`#112\relax}% borrowed from latex
\def\execute#1{#1}% Seems stupid, but cs are identified BEFORE execution
{\catcode`\%=12
\xdef\B@undingBox{%%BoundingBox}
}   %% is not a true comment in PostScript, even if % is!
\def\ReadPSize#1{
 \edef\PSfilename{#1}
 \openin\pst@mpin=#1\relax
 \ifeof\pst@mpin \errhelp=\PShelp
   \errmessage{I haven't found your postscript file (\PSfilename)}
   \psloc@lerr{was not found}
   \s@tsize 0 0 142 142\@ndsize
   \closein\pst@mpin
 \else
   \immediate\write\psbj@inaux{#1,}
   \loop
     \executeinspecs{\catcode`\ =10\global\read\pst@mpin to\n@xtline}
     \ifeof\pst@mpin
       \errhelp=\PShelp
       \errmessage{(\PSfilename) is not an Encapsulated PostScript File:
           I could not find any \B@undingBox: line.}
       \edef\v@lue{0 0 142 142:}
       \psloc@lerr{is not an EPSFile}
       \NotB@undingBoxfalse
     \else
       \expandafter\sc@nline\n@xtline:\@ndline
       \ifx\p@rameter\B@undingBox\NotB@undingBoxfalse
         \edef\t@mp{%
           \expandafter\g@bblefirstblank\v@lue\space\space\space}
         \expandafter\s@tsize\t@mp\@ndsize
       \else\NotB@undingBoxtrue
       \fi
     \fi
   \ifNotB@undingBox\repeat
   \closein\pst@mpin
 \fi
\message{#1}
}
%
% \psboxto(xdim;ydim){psfilename}: you specify the dimensions and
%    TeX uniformly scales to fit the largest one. If xdim=0pt, the
%    scale is fully determined by ydim and vice versa.
%    Notice: psboxes are a real vboxes; couldn't take hbox otherwise all
%    indentation and all cr's would be interpreted as spaces (hugh!).
%
\newcount\xscale \newcount\yscale \newdimen\pscm\pscm=1cm
\newdimen\d@mx \newdimen\d@my
\let\ps@nnotation=\relax
\def\psboxto(#1;#2)#3{\vbox{
   \ReadPSize{#3}
   \divide\drawingwd by 1000
   \divide\drawinght by 1000
   \d@mx=#1
   \ifdim\d@mx=0pt\xscale=1000
         \else \xscale=\d@mx \divide \xscale by \drawingwd\fi
   \d@my=#2
   \ifdim\d@my=0pt\yscale=1000
         \else \yscale=\d@my \divide \yscale by \drawinght\fi
   \ifnum\yscale=1000
         \else\ifnum\xscale=1000\xscale=\yscale
                    \else\ifnum\yscale<\xscale\xscale=\yscale\fi
              \fi
   \fi
   \divide \psxoffset by 1000\multiply\psxoffset by \xscale
   \divide \psyoffset by 1000\multiply\psyoffset by \xscale
   \global\divide\pscm by 1000
   \global\multiply\pscm by\xscale
   \multiply\drawingwd by\xscale \multiply\drawinght by\xscale
   \ifdim\d@mx=0pt\d@mx=\drawingwd\fi
   \ifdim\d@my=0pt\d@my=\drawinght\fi
   \message{scaled \the\xscale}
 \hbox to\d@mx{\hss\vbox to\d@my{\vss
   \global\setbox\drawingBox=\hbox to 0pt{\kern\psxoffset\vbox to 0pt{
      \kern-\psyoffset
      \PSspeci@l{\PSfilename}{\the\xscale}
      \vss}\hss\ps@nnotation}
   \global\ht\drawingBox=\the\drawinght
   \global\wd\drawingBox=\the\drawingwd
   \baselineskip=0pt
   \copy\drawingBox
 \vss}\hss}
  \global\psxoffset=0pt
  \global\psyoffset=0pt% These are local to one figure
  \global\pscm=1cm
  \global\drawingwd=\drawingwd
  \global\drawinght=\drawinght
}}
%
% \psboxscaled{scalefactor*1000}{PSfilename} allows to bypass the
%   rounding errors of TeX integer divisions for situations where the
%   TeX box should fit the original BoundingBox with a precision better
%   than 1/1000.
%
\def\psboxscaled#1#2{\vbox{
  \ReadPSize{#2}
  \xscale=#1
  \message{scaled \the\xscale}
  \divide\drawingwd by 1000\multiply\drawingwd by\xscale
  \divide\drawinght by 1000\multiply\drawinght by\xscale
  \divide \psxoffset by 1000\multiply\psxoffset by \xscale
  \divide \psyoffset by 1000\multiply\psyoffset by \xscale
  \global\divide\pscm by 1000
  \global\multiply\pscm by\xscale
  \global\setbox\drawingBox=\hbox to 0pt{\kern\psxoffset\vbox to 0pt{
     \kern-\psyoffset
     \PSspeci@l{\PSfilename}{\the\xscale}
     \vss}\hss\ps@nnotation}
  \global\ht\drawingBox=\the\drawinght
  \global\wd\drawingBox=\the\drawingwd
  \baselineskip=0pt
  \copy\drawingBox
  \global\psxoffset=0pt
  \global\psyoffset=0pt% These are local to one figure
  \global\pscm=1cm
  \global\drawingwd=\drawingwd
  \global\drawinght=\drawinght
}}
%
%  \psbox{PSfilename} makes a TeX box having the minimal size to
%      enclose the picture
\def\psbox#1{\psboxscaled{1000}{#1}}
%
%
%  \joinfiles file1, file2, ...n \into joinedfilename .
%     makes one file out of many
%  \splitfile joinedfilename
%     the opposite
%
%\def\execute#1{#1}% NOT stupid: cs in #1 are then identified BEFORE execution
%\def\psm@keother#1{\catcode`#112\relax}% borrowed from latex
%\def\executeinspecs#1{%
%\execute{\begingroup\let\do\psm@keother\dospecials\catcode`\^^M=9#1\endgroup}}
%\newread\pst@mpin
\newif\ifn@teof\n@teoftrue
\newif\ifc@ntrolline
\newif\ifmatch
\newread\j@insplitin
\newwrite\j@insplitout
\newwrite\psbj@inaux
\immediate\openout\psbj@inaux=psbjoin.aux
\immediate\write\psbj@inaux{\string\joinfiles}
\immediate\write\psbj@inaux{\jobname,}
%
% We redefine input to keep track of the various files inputted
%
\immediate\let\oldinput=\input
\def\input#1 {
 \immediate\write\psbj@inaux{#1,}
 \oldinput #1 }
\def\empty{}
\def\setmatchif#1\contains#2{
  \def\match##1#2##2\endmatch{
    \def\tmp{##2}
    \ifx\empty\tmp
      \matchfalse
    \else
      \matchtrue
    \fi}
  \match#1#2\endmatch}
\def\warnopenout#1#2{
 \setmatchif{TrashMe,psbjoin.aux,psbjoin.all}\contains{#2}
 \ifmatch
 \else
   \immediate\openin\pst@mpin=#2
   \ifeof\pst@mpin
     \else
     \errhelp{If the content of this file is so precious to you, abort (ie
press x or e) and rename it before retrying.}
     \errmessage{I'm just about to replace your file named #2}
   \fi
   \immediate\closein\pst@mpin
 \fi
 \message{#2}
 \immediate\openout#1=#2}
%  No comments allowed below: % will have an unusual catcode
{
\catcode`\%=12
\gdef\splitfile#1 {
 \immediate\openin\j@insplitin=#1
 \message{Splitting file #1 into:}
 \warnopenout\j@insplitout{TrashMe}
 \loop
   \ifeof
     \j@insplitin\immediate\closein\j@insplitin\n@teoffalse
   \else
     \n@teoftrue
     \executeinspecs{\global\read\j@insplitin to\spl@tinline\expandafter
       \ch@ckbeginnewfile\spl@tinline%Beginning-Of-File-Named:%\endcheck}
     \ifc@ntrolline
     \else
       \toks0=\expandafter{\spl@tinline}
       \immediate\write\j@insplitout{\the\toks0}
     \fi
   \fi
 \ifn@teof\repeat
 \immediate\closeout\j@insplitout}
\gdef\ch@ckbeginnewfile#1%Beginning-Of-File-Named:#2%#3\endcheck{
 \def\t@mp{#1}
 \ifx\empty\t@mp
   \def\t@mp{#3}
   \ifx\empty\t@mp
     \global\c@ntrollinefalse
   \else
     \immediate\closeout\j@insplitout
     \warnopenout\j@insplitout{#2}
     \global\c@ntrollinetrue
   \fi
 \else
   \global\c@ntrollinefalse
 \fi}
\gdef\joinfiles#1\into#2 {
 \message{Joining following files into}
 \warnopenout\j@insplitout{#2}
 \message{:}
 {
 \edef\w@##1{\immediate\write\j@insplitout{##1}}
 \w@{% This text was produced with psbox's \string\joinfiles.}
 \w@{% To decompose and tex it:}
 \w@{%-save this with a filename CONTAINING ONLY LETTERS, and no extensions}
 \w@{% (say, JOINTFIL), in some uncrowded directory;}
 \w@{%-make sure you can \string\input\space psbox.tex (version>=1.3);}
 \w@{%-tex JOINTFIL using Plain, or LaTeX, or whatever is needed by}
 \w@{% the first part in the joining (after splitting JOINTFIL into}
 \w@{% it's constituents, TeX will try to process it as it stands).}
 \w@{\string\input\space psbox.tex}
 \w@{\string\splitfile{\string\jobname}}
 }
 \tre@tfilelist#1, \endtre@t
 \immediate\closeout\j@insplitout}
\gdef\tre@tfilelist#1, #2\endtre@t{
 \def\t@mp{#1}
 \ifx\empty\t@mp
   \else
   \llj@in{#1}
   \tre@tfilelist#2, \endtre@t
 \fi}
\gdef\llj@in#1{
 \immediate\openin\j@insplitin=#1
 \ifeof\j@insplitin
   \errmessage{I couldn't find file #1.}
   \else
   \message{#1}
   \toks0={%Beginning-Of-File-Named:#1}
   \immediate\write\j@insplitout{\the\toks0}
   \executeinspecs{\global\read\j@insplitin to\oldj@ininline}
   \loop
     \ifeof\j@insplitin\immediate\closein\j@insplitin\n@teoffalse
       \else\n@teoftrue
       \executeinspecs{\global\read\j@insplitin to\j@ininline}
       \toks0=\expandafter{\oldj@ininline}
       \let\oldj@ininline=\j@ininline
       \immediate\write\j@insplitout{\the\toks0}
     \fi
   \ifn@teof
   \repeat
   \immediate\closein\j@insplitin
 \fi}
}
% To be put at the end of a file, for making an tar-like file containing
%   everything it used.
\def\autojoin{
 \immediate\write\psbj@inaux{\string\into\space psbjoin.all}
 \immediate\closeout\psbj@inaux
 \input psbjoin.aux
}
%
%  Annotations & Captions etc...
%
%
% \centinsert{anybox} is just a centered \midinsert, but is included as
%    people barely use the original inserts from TeX.
%
\def\centinsert#1{\midinsert\line{\hss#1\hss}\endinsert}
\def\psannotate#1#2{\def\ps@nnotation{#2\global\let\ps@nnotation=\relax}#1}
\def\pscaption#1#2{\vbox{
   \setbox\drawingBox=#1
   \copy\drawingBox
   \vskip\baselineskip
   \vbox{\hsize=\wd\drawingBox\setbox0=\hbox{#2}
     \ifdim\wd0>\hsize
       \noindent\unhbox0\tolerance=5000
    \else\centerline{\box0}
    \fi
}}}
% for compatibility with older versions
\def\psfig#1#2#3{\pscaption{\psannotate{#1}{#2}}{#3}}
\def\psfigurebox#1#2#3{\pscaption{\psannotate{\psbox{#1}}{#2}}{#3}}
%
% \at(#1;#2)#3 puts #3 at #1-higher and #2-right of the current
%    position without moving it (to be used in annotations).
\def\at(#1;#2)#3{\setbox0=\hbox{#3}\ht0=0pt\dp0=0pt
  \rlap{\kern#1\vbox to0pt{\kern-#2\box0\vss}}}
%
% \gridfill(ht;wd) makes a 1cm*1cm grid of ht by wd whose lower-left
%   corner is the current point
\newdimen\gridht \newdimen\gridwd
\def\gridfill(#1;#2){
  \setbox0=\hbox to 1\pscm
  {\vrule height1\pscm width.4pt\leaders\hrule\hfill}
  \gridht=#1
  \divide\gridht by \ht0
  \multiply\gridht by \ht0
  \gridwd=#2
  \divide\gridwd by \wd0
  \multiply\gridwd by \wd0
  \advance \gridwd by \wd0
  \vbox to \gridht{\leaders\hbox to\gridwd{\leaders\box0\hfill}\vfill}}
%
% Useful to measure where to put annotations
\def\fillinggrid{\at(0cm;0cm){\vbox{
  \gridfill(\drawinght;\drawingwd)}}}
%
% \textleftof\anybox: Sample text\endtext
%   inserts "Sample text" on the left of \anybox ie \vbox, \psbox.
%   \textrightof is the symmetric (not documented, too uggly)
% Welcome any suggestion about clean wraparound macros from
%   TeXhackers reading this
%
\def\textleftof#1:{
  \setbox1=#1
  \setbox0=\vbox\bgroup
    \advance\hsize by -\wd1 \advance\hsize by -2em}
\def\textrightof#1:{
  \setbox0=#1
  \setbox1=\vbox\bgroup
    \advance\hsize by -\wd0 \advance\hsize by -2em}
\def\endtext{
  \egroup
  \hbox to \hsize{\valign{\vfil##\vfil\cr%
\box0\cr%
\noalign{\hss}\box1\cr}}}
%
% \frameit{\thick}{\skip}{\anybox}
%    draws with thickness \thick a box around \anybox, leaving \skip of
%    blank around it. eg \frameit{0.5pt}{1pt}{\hbox{hello}}
% \boxit{\anybox} is a shortcut.
\def\frameit#1#2#3{\hbox{\vrule width#1\vbox{
  \hrule height#1\vskip#2\hbox{\hskip#2\vbox{#3}\hskip#2}%
        \vskip#2\hrule height#1}\vrule width#1}}
\def\boxit#1{\frameit{0.4pt}{0pt}{#1}}
%
%
\catcode`\@=12 % cs containing @ are unreachable
%
% CUSTOMIZE YOUR DEFAULT DRIVER:
%    Uncomment the line corresponding to your TeX system:
%\psfortextures%     For TeXtures on the Macintosh
%\psforoztex   %     For OzTeX shareware on the Macintosh
%\psfordvitops %     For the DVItoPS converter for TeX on IBM mainframes
 \psfordvips   %     For DVIPS converter on VAX and UNIX
%\psfordvitps  %     For dvitps from TeXPS package under UNIX
%\psforDVIALW  %     For DVIALW, UNIX public domain
%\psonlyboxes  %     Blank Boxes (when all else fails).



% TeX macros for dumping included Postscript to files.
% Adapted from Knuth's \answer macro in the TeXbook.
% Requires Plain TeX.  Maybe other flavors will work too?
% Jamie Stephens, jamies@math.utexas.edu, 28 Nov 94

\def\endofps{EndOfTheIncludedPostscriptMagicCookie}
\chardef\other=12
\newwrite\psdumphandle 
\outer\def\psdump#1{\par\medbreak
  \immediate\openout\psdumphandle=#1
  \copytoblankline}
\def\copytoblankline{\begingroup\setupcopy\copypsline}
\def\setupcopy{\def\do##1{\catcode`##1=\other}\dospecials
  \catcode`\\=\other \obeylines}
{\obeylines \gdef\copypsline#1
  {\def\next{#1}%
  \ifx\next\endofps\let\next=\endgroup %
  \else\immediate\write\psdumphandle{\next} \let\next=\copypsline\fi\next}}
\outer\def\closepsdump{
  \immediate\closeout\psdumphandle}

% EXAMPLE (remove the leading % signs to make it work):
%
%\psdump{example.ps}These three lines
%are going be dumped "as is"
%to the file example.ps
%EndOfTheIncludedPostscriptMagicCookie
%\closepsdump


\parskip=8pt plus 1pt minus 1pt
\baselineskip=14pt
\magnification\magstep1
%\parindent=0pt
%\nopagenumbers


\font \brm = cmr10 scaled \magstep 2
\font \bbrm = cmr10 scaled \magstep 3
\font \bbf = cmbx10 scaled \magstep 2 


\def \hb{\hfill\break}
\def \vo{\vskip 5mm}
\def \vsm{\vskip 1cm}
%\def \vss{\vskip 2.2cm}
\def \vsss{\vskip 2.5cm}
\def \hs {\hskip 0.5cm}
\def \ve{\vfill\eject}
\def \ce{\centerline}
\def \di{\displaystyle}
\def \d{\partial}
\def \Tr{\text{\rm Tr}\,}
\def \Re{\text{\rm Re}\,}
\def \Im{\text{\rm Im}\,}
\def \TP{\text{\rm TP}\,}
\def \const{\text{\rm const}\,}
\def \formal{\text{\rm formal}}

        \def \G{\Gamma}
        \def \g{\gamma}
        \def \a{\alpha}
        \def \b{\beta}
        \def \de{\delta}
        \def \De{\Delta}
        \def \ep{\varepsilon}
        \def \kappa{\varkappa}
        \def \la{\lambda}
        \def \La{\Lambda}
        \def \r{\rho}
        \def \t{\theta}
        \def \z{\zeta}
        \def \Sg{\Sigma}
        \def \sg{\sigma}
        \def \Om{\Omega}
        \def \U{\Cal Q}
        \def \om{\omega}
        \def \Var{\text{\rm Var}\;}
        \def \tr{\,\text{\rm tr}\,}
        \def \sign{\,\text{\rm sign}\,}
        \def \f{\varphi}
        \def \N{\Bbb N}
        \def \Q{\Bbb Q}
        \def \R{\Bbb R}
        \def \C{\Bbb C}
        \def \T{\Bbb T}
        \def \Z{\Bbb Z}
        \def \rf{\root 4 \of}
        \def \Ai{\,\text{\rm Ai}\,}
        \def \iff{\quad\text{\rm if}\quad}
        \def \ON{O(N^{-2})}
        \def \iz{\int_{z_1}^{z_2}}
        \def \ix{\int_{x_1}^{x_2}}
        \def \A{\text{\rm A}}
        \def \WKB{\text{\rm WKB}}
        \def \lacr{\la_{\text{\rm cr}}}
      
   

\null
\vskip 2cm

\ce{\bbrm Semiclassical Asymptotics of Orthogonal }

\vskip 5mm

\ce{\bbrm Polynomials, Riemann-Hilbert Problem,}

\vskip 5mm

\ce{\bbrm and Universality in the Matrix Model}

\vskip 1cm     

\ce {\bbf Pavel Bleher and Alexander Its}

\vskip 1cm

\ce{\brm  Department of Mathematical Sciences}

\vskip 2mm 

\ce{\brm Indiana University -- Purdue University}

\vskip 2mm

\ce {\brm at Indianapolis}

\vskip 2cm


{\bf Abstract.} We derive semiclassical asymptotics for the
orthogonal polynomials on the line with the weight $\exp(-NV(z))$,
where $V(z)=\di{tz^2\over 2}+{gz^4\over 4},\;g>0,\;t<0$, is a
double-well quartic polynomial. Simultaneously we derive semiclassical
asymptotics for the recursive coefficients of the orthogonal
polynomials. The proof of the asymptotics is based on the
analysis of the appropriate matrix Riemann-Hilbert problem. As an
application of the semiclassical asymptotics, we prove the universality
of the local distribution of eigenvalues in the matrix model with
the double-well quartic interaction in the presence of two cuts. 

\vfill\eject

${}$

\vskip 1cm

\beginsection Contents \par


\item {1.} Main Result.

\item {2.} Universality of the Local Distribution of Eigenvalues in
the Matrix Model.  

\item {3.} The Lax Pair for the Freud Equation.

\item {4.} The Stokes Phenomenon.

\item {5.} The Riemann-Hilbert Problem.

\item {6.} Formal Asymptotic Expansion for $R_n$.

\item {7.} The Bohr-Sommerfeld Quantization Condition.

\item {8.} Semiclassical Approximation Near Turning Point.

\item {9.} Connection Formula Between Turning Point and Infinity.

\item {10.} Proof of the Main Theorem: Asymptotic Riemann-Hilbert
Problem.  

\itemitem {10.1.} Direct Monodromy Problem.

\itemitem {10.2.} Inverse Monodromy Problem.

\itemitem {10.3.} Triangular Case. Orthogonal Polynomials.

\itemitem {10.4.} Asymptotic Solution of the Direct Monodromy
Problem. Complex WKB Analysis. 

\itemitem {10.5.} Asymptotic Solution of the Inverse Monodromy
Problem. Completion of the Proof of the Main Theorem.

\noindent Appendix. An Alternative Asymptotic Analysis of the Inverse
Monodromy Problem. 

\noindent References.


\vfill\eject



\beginsection 
1. Main Result
\par

Let
$$
V(z)={tz^2\over 2}+{gz^4\over 4},\qquad g>0,
\qquad t<0,
\eqno (1.1)
$$
be a double-well quartic polynomial,
and let
$$
P_n(z)=z^n+\dots,\qquad n=0,1,2,\dots,
\eqno (1.2)
$$
be orthogonal polynomials on a line with the
weight $e^{-NV(z)}$,
$$
\int_{-\infty}^\infty P_n(z)P_m(z)\,e^{-NV(z)}dz=h_n\de_{mn}.
\eqno (1.3)
$$
The polynomials $P_n(z)$ satisfy the basic recursive equation
$$
zP_n(z)=P_{n+1}(z)+R_nP_{n-1}(z),
\eqno (1.4)
$$
where
$$
R_n={h_n\over h_{n-1}}.
\eqno (1.5)
$$
In addition, integration by parts gives
$$\eqalign{
P'_n(z)
&=NR_n[t+g(R_{n-1}+R_n+R_{n+1})]
P_{n-1}(z)\cr
&+(NR_{n-2}R_{n-1}R_n)P_{n-3}(z),\qquad(')\equiv {d\over dz}\,.\cr}
\eqno (1.6)
$$
Since $P'_n(z)=nz^{n-1}+\dots$, this implies the Freud equation
\vskip 1mm
$$
n=NR_n[t+g(R_{n-1}+R_n+R_{n+1})].
\eqno (1.7)
$$
\vskip 1mm
\noindent
(cf. [Fre]). From (1.5) and (1.7) it follows that
$$
0<R_n<{-t+\sqrt{t^2+4\la g}\over 2g}\,, \qquad \la={n\over N}\,.
\eqno (1.8)
$$
Let
$$
\psi_n(z)={1\over \sqrt{h_n}}\, P_n(z) e^{-NV(z)/2}\,.
\eqno (1.9)
$$
Then
$$
\int_{-\infty}^\infty \psi_n(z)\psi_m(z)\, dz=\de_{nm}.
\eqno (1.10)
$$
In this work we prove the semiclassical asymptotics for the functions
$\psi_n(z)$ and 
for the coefficients $R_n$ in the limit when $N,n\to\infty$ 
in such a way that there exists  $\ep>0$ such that the ratio $\la=n/N$
satisfies the inequalities
$$
\ep<\la<\lacr-\ep,\qquad \la={n\over N}\,,
\eqno (1.11)
$$
where 
$$
\lacr={t^2\over 4g}\,.
\eqno (1.12)
$$

Denote
$$
\la'={n+{1\over 2}\over N}.
$$
In what follows the potential function
$$
U_{0}(z)=z^2\left[{(gz^2+t)^2\over 4}-\la' g\right],
$$
is important. 
Introduce the turning points $z_1$ and $z_2$ as zeros of $U_{0}(z)$,
$$
z_{1,2}=\left({-t\mp 2\sqrt{\la' g}\over g}\right)^{1/2}\,.
\eqno (1.13)
$$
The condition (1.11) implies that $z_1$ and $z_2$ are real for
large $N$, and 
$z_2>z_1>C\sqrt\ep$.
We prove the following main theorem.

{\bf Theorem 1.1}. {\it Assume that $N,n\to\infty$ in such a way that
(1.11) holds. Then there exists $C=C(\ep)>0$ such that
$$
\left|R_n-{-t-(-1)^n\sqrt{t^2-4\la g}\over 2g}\right|\le
CN^{-1},\qquad \la={n\over N}\,.
\eqno (1.14)
$$
In addition, for every $\de>0$,
in the interval $z_1+\de<z<z_2-\de$, 
$$
\psi_n(z)= 
{2C_n\sqrt {z}\over \sqrt
{\sin \phi}}
\,\left\{\cos\left[
{\left(n+{1\over 2}\right)\over 2}\left( {\sin 2\phi\over
2}-\phi\right)+{\pi-(-1)^n\chi\over 4}\right] 
+O(N^{-1})\right\},
\eqno (1.15) 
$$
where
$$
\phi=\arccos x,\qquad \chi=\arccos y,
$$
and
$$
 x={gz^2+t\over 2\sqrt{\la' g}}\,,
\qquad y={2\sqrt{\la' g}-tx\over 2\sqrt{\la'g}\, x-t}
={-tgz^2-t^2+4\la'g\over  2\sqrt{\la'g}\, gz^2}\,,
\qquad \la'={n+{1\over 2}\over N}\,.
\eqno (1.16)
$$
If $z>z_2+\de$ or $0\le z<z_1-\de$, then
$$
\psi_n(z)=
(-1)^{\sg}{C_n\sqrt {z}\over \sqrt
{\sinh \phi}}
\,\exp\left\{
-{\left(n+{1\over 2}\right)\over 2}\left[ {\sinh(2\phi)\over
2}-\phi\right]\right.
\left.+{(-1)^n\chi\over 4} 
+O\left (\frac{1}{N(1+|z|)}\right )\right\},
\eqno (1.17) 
$$ 
where

$$
\sg = \frac{1-\sign(z-z_{1})}{2}
\left [\frac{n}{2}\right], \quad \left [\frac{n}{2}\right] = l,\quad \text{if}
\quad n = 2l\quad \text{or}\quad 2l+1,
$$

$$
\phi=\cosh^{-1}|x|,
\qquad \chi=\cosh^{-1}|y|
$$
and $x,y$ are given by (1.16).

If $z_k-\de\le z \le z_k+\de,\quad k=1,2$, then
$$
\psi_n(z)={D_n\, z\over \sqrt{|\f'_N(z)}|}\,
\left[\Ai\left(N^{2/3}\f_N(z)\right)+O(N^{-1})\right]\,, 
\eqno (1.18)
$$
where $\Ai(z)$ is the Airy function, $\f_N(z)$ is an analytic function
on $[z_k-\de,z_k+\de]$ such that for
$(z-z_k^{(N)})(-1)^k\ge 0$,
$$
\f_N(z)=\left[{3\over 2}\left|\int_{z_k^{(N)}}^z\sqrt
{U_N(v)}\,dv\right|\right]^{2/3},\qquad k=1,2,
\eqno (1.19)
$$
where $z_k^{(N)}=z_k+O(N^{-1})$ is the closest to $z_k$ zero of the
polynomial  
$$
U_N(z)=U_{0}(z)+N^{-1}\left({t\over 2}+gR_n\right)
=z^2\left[{(gz^2+t)^2\over 4}-\la' g\right]
+N^{-1}\left({t\over 2}+gR_n\right)\,. 
\eqno (1.20)
$$
%(note that  $|\f_N'(z)|>0$ $\forall\,z\in[z_k-\de,z_k+\de]$).
%The branch of $\f_N(z)$ is determined by the asymptotic equation,
%$$
%\f_N(z)= e^{{i\pi \over 3}(2-k)}z_{k}(4g^{3}\lambda)^{1/6}(z-z_{k}) + O\left
%({1\over N}\right ) + O\left ((z-z_{k})^{2}\right ).
%$$
The constant factor $C_n$ in (1.15) and (1.17) is 
$$
C_n=\frac {1}{2\sqrt \pi }\left({g\over \la}\right)^{1/4}
(1+O(N^{-1})), 
\eqno (1.21)
$$
and $D_n$ in (1.18) is
$$
D_n=N^{1/6}\sqrt{g}\,(-1)^{\sigma_0}
(1+O(N^{-1}))\,,\qquad \sigma_0=(2-k)\,\left[{n\over 2}\right]\,.
\eqno (1.22)
$$
Finally, $h_n$ in (1.3) is
$$  
h_n=2\pi\sqrt {R_n}\,\exp\left[ {Nt^2\over
4g}-{N\la\over 2}\left(1+\ln{g\over \la}\right)
+O(N^{-1})\right].
\eqno (1.23)
$$}

The asymptotic formulae (1.15), (1.17) and (1.18) is an extension of
the classical Plancherel--Rotach asymptotics of the
Hermite polynomials (see [PR] and [Sze]), to the orthogonal
polynomials with respect to the weight $e^{-NV(z)}$ where $V(z)$ is
the quartic polynomial (1.1).  
These formulae are extended into the complex plane in $z$ as well
(see section 10 below). We derive the formula (1.15)
from the semiclassical formula
$$
\psi_n(z)={ z\sqrt{g/\pi}\over |U_0(z)|^{1/4}}
\left[\cos\left(N\int_{z_2}^z |U_N(v)|^{1/2}\,dv+{\pi\over
4}\right)+O(N^{-1})\right]\,. 
\eqno (1.24)
$$
where $U_N(z)$ is defined in (1.20).
Asymptotics (1.14) of the coefficients $R_n$
is a Freud's type 
asymptotics. For the homogeneous function $V(z)=|z|^\a$ and some its
generalizations, the asymptotics of $R_n$ is obtained in the papers of 
Freud [Fre], Nevai [Nev1], Magnus [Mag1,Mag2], Lew and Quarles [LQ],
M\'at\'e, Nevai, and Zaslavsky [MNZ].
Semiclassical 
asymptotics of the functions $\psi_n(z)$ is proven for $V(z)=z^4$ by
Nevai [Nev1] and for $V(z)=z^6$ by Sheen [She]. See also somewhat
weaker asymptotic
results for general homogeneous $V(z)$ in the works of Lubinsky and
Saff [LS], Lubinsky, Mhaskar, and Saff [LMS],
Levin and Lubinsky 
[LL], Rahmanov [Rah], and others. Application of these asymptotics to
random matrices is discussed in the work of Pastur [Pas]. The
distribution of zeros and related problems for orthogonal polynomials
corresponding to general homogeneous $V(z)$ are studied in the
recent work [DKM] by Deift, Kriecherbauer, and McLaughlin.
Many results and references on the
asymptotics of orthogonal polynomials  are given in the 
comprehensive review article [Nev2] of Nevai. The problem 
of finding asymptotics of $R_n$ for a quartic nonconvex polynomial is
discussed in [Nev2,3], and it is known as ``Nevai's problem''. 

The equation (1.14) shows that if $0<\la<\lacr$ then
$$\eqalign{
\lim_{N\to\infty;\; (2m)/N\to\la} R_{2m}&=L(\la)={-t-\sqrt{t^2-4\la
g}\over 2g}\,,\cr
\lim_{N\to\infty;\; (2m+1)/N\to\la}
R_{2m+1}&=R(\la)={-t+\sqrt{t^2-4\la 
g}\over 2g}\,.\cr}
\eqno (1.25)
$$
Both $L(\la)$ and $R(\la)$ satisfy the quadratic equation
$$
gu^2+tu+\la=0,
$$
so that, when $n$ grows, $R_n$ jumps back and forth from one sheet of
the parabola to another (see Fig.1). At $\la=\lacr$ the two sheets
merge, i.e., $L(\lacr)=R(\lacr)$. For $\la>\lacr$,
$$
\lim_{N\to\infty;\; n/N\to\la}R_n=Q(\la),
\eqno (1.26)
$$
where $u=Q(\la)$ satisfies the quadratic equation
$$
3gu^2+tu-\la=0
$$
(which follows from the Freud equation (1.7) if we put
$u=R_{n-1}=R_n=R_{n+1}$). We consider
semiclassical asymptotics for $\la>\lacr$ and in the vicinity of
$\lacr$ (double scaling limit) in a separate work. The difference in
the asymptotics between the cases $\la<\lacr$ and $\la>\lacr$ is that for
$\la<\lacr$ the function $\psi_n(z)$ is concentrated on two intervals,
or two cuts, $[-z_2,-z_1]$ and $[z_1,z_2]$, and it is exponentially
small outside of these intervals, while for $\la>\lacr$, $z_1$ becomes
pure imaginary, and $\psi_n(z)$ is concentrated on one cut
$[-z_2,z_2]$. The transition from two-cut to one-cut regime is
discussed in physical works by  Cicuta, Molinari, and Montaldi [CMM],
Crnkovi\'c and Moore [CM], Douglas, Seiberg, Shenker [DSS], Periwal
and Shevitz [PeS], and others.


\vskip .4in
\psdump{p00.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig001349
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Mon Jan 20 14:16:18 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 135 274 477 518
%%Pages: 1
%%EndComments
/$F2psDict 200 dict def 
$F2psDict begin
$F2psDict /mtrx matrix put
/l {lineto} bind def
/m {moveto} bind def
/s {stroke} bind def
/n {newpath} bind def
/gs {gsave} bind def
/gr {grestore} bind def
/clp {closepath} bind def
/graycol {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul
4 -2 roll mul setrgbcolor} bind def
/col-1 {} def
/col0 {0 0 0 setrgbcolor} bind def
/col1 {0 0 1 setrgbcolor} bind def
/col2 {0 1 0 setrgbcolor} bind def
/col3 {0 1 1 setrgbcolor} bind def
/col4 {1 0 0 setrgbcolor} bind def
/col5 {1 0 1 setrgbcolor} bind def
/col6 {1 1 0 setrgbcolor} bind def
/col7 {1 1 1 setrgbcolor} bind def
/col8 {.68 .85 .9 setrgbcolor} bind def
/col9 {0 .39 0 setrgbcolor} bind def
/col10 {.65 .17 .17 setrgbcolor} bind def
/col11 {1 .51 0 setrgbcolor} bind def
/col12 {.63 .13 .94 setrgbcolor} bind def
/col13 {1 .75 .8 setrgbcolor} bind def
/col14 {.7 .13 .13 setrgbcolor} bind def
/col15 {1 .84 0 setrgbcolor} bind def
        end
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
%%EndProlog

$F2psBegin
0 setlinecap 0 setlinejoin
9.0 589.0 translate 0.630 -0.630 scale
0.500 setlinewidth
% Polyline
n 259 399 m 259 124 l gs col-1 s gr
n 257.000 132.000 m 259.000 124.000 l 261.000 132.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 199 339 m 734 339 l gs col-1 s gr
n 726.000 337.000 m 734.000 339.000 l 726.000 341.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 279 164 m 299 329 l gs col-1 s gr
        [] 0 setdash
n 300.023 320.817 m 299.000 329.000 l 296.052 321.299 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 299 329 m 319 169 l gs col-1 s gr
        [] 0 setdash
n 316.023 176.690 m 319.000 169.000 l 319.992 177.186 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 319 169 m 339 324 l gs col-1 s gr
        [] 0 setdash
n 339.960 315.810 m 339.000 324.000 l 335.993 316.322 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 339 324 m 359 179 l gs col-1 s gr
        [] 0 setdash
n 355.926 186.652 m 359.000 179.000 l 359.888 187.198 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 399 184 m 419 314 l gs col-1 s gr
        [] 0 setdash
n 419.760 305.789 m 419.000 314.000 l 415.807 306.397 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 359 179 m 379 319 l gs col-1 s gr
        [] 0 setdash
n 379.849 310.798 m 379.000 319.000 l 375.889 311.363 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 379 319 m 399 184 l gs col-1 s gr
        [] 0 setdash
n 395.849 191.621 m 399.000 184.000 l 399.806 192.207 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 259 334 m 279 164 l gs col-1 s gr
        [] 0 setdash
n 276.079 171.712 m 279.000 164.000 l 280.052 172.179 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 419 314 m 439 194 l gs col-1 s gr
        [] 0 setdash
n 435.712 201.562 m 439.000 194.000 l 439.658 202.220 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 439 194 m 459 299 l gs col-1 s gr
        [] 0 setdash
n 459.468 290.767 m 459.000 299.000 l 455.538 291.516 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 459 299 m 479 209 l gs col-1 s gr
        [] 0 setdash
n 475.312 216.376 m 479.000 209.000 l 479.217 217.243 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 479 209 m 499 279 l gs col-1 s gr
        [] 0 setdash
n 498.725 270.758 m 499.000 279.000 l 494.879 271.857 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 499 279 m 519 239 l gs col-1 s gr
        [] 0 setdash
n 513.633 245.261 m 519.000 239.000 l 517.211 247.050 l gs 2 setlinejoin col-1 s gr
        1 setlinecap [1 3.000000] 3.000000 setdash
% Polyline
n 519 239 m 519 339 l gs col-1 s gr
        [] 0 setdash 0 setlinecap
% Interpolated spline
n 259 339 m
        375.162 326.175 425.162 316.175 459 299 curveto
        477.005 289.861 520.407 272.555 519 244 curveto
        517.704 217.688 475.531 206.391 459 199 curveto
        425.284 183.925 375.284 173.925 259 159 curveto
gs col-1 s gr
        1 setlinecap [1 3.000000] 3.000000 setdash
% Interpolated spline
n 514 239 m
        412.447 249.134 368.697 255.384 339 264 curveto
        314.437 271.126 259.151 286.701 239 309 curveto
        236.095 312.215 232.087 318.828 234 324 curveto
        237.528 333.537 252.125 342.893 259 339 curveto
        259.884 338.499 259.884 337.249 259 334 curveto
gs col-1 s gr
        [] 0 setdash 0 setlinecap
% Interpolated spline
n 519 239 m
        576.885 235.678 601.885 234.428 619 234 curveto
        636.948 233.551 663.198 233.551 724 234 curveto
gs col-1 s gr
/Times-Roman findfont 40.00 scalefont setfont
274 164 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
294 334 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
314 169 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
334 329 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
374 324 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
394 184 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
414 319 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
249 129 m 
gs 1 -1 scale (u) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
299 499 m 
gs 1 -1 scale (The qualitative behaviour of the recurrence coefficients) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
734 354 m 
gs 1 -1 scale (l) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
254 339 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
354 179 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
574 239 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
534 239 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
554 239 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
634 234 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
594 234 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
614 239 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
259 499 m 
gs 1 -1 scale (Fig.1.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
434 194 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
454 299 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
474 209 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
494 279 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 40.00 scalefont setfont
514 239 m 
gs 1 -1 scale (.) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
514 354 m 
gs 1 -1 scale (l) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
524 359 m 
gs 1 -1 scale (cr) col-1 show gr
showpage
$F2psEnd

EndOfTheIncludedPostscriptMagicCookie
\closepsdump
\ce {\psbox{p00.ps}}
\vskip .4in

A general ansatz on the structure of the semiclassical asymptotics of
the functions $\psi_n(z)$ for a ``generic'' polynomial $V(z)$ is
proposed in the work [BZ] of Br\'ezin and Zee. They consider $n$ close
to $N$, 
$n=N+O(1)$, and they suggest that for these $n$'s,
$$
\psi_n(z)={1\over\sqrt
{f(z)}}\,\cos\bigl(N\z(z)-(N-n)\f(z)+\chi(z)\bigr),
\eqno (1.27) 
$$
with some fuctions $f(z),\;\z(z),\;\f(z),$ and $\chi(z)$. 
This fits in well the asymptotics (1.15), except for the factor
$(-1)^n$ at $\chi$ in (1.15), which is related to the two-cut
structure of $\psi_n(z)$. 







\vskip .2in

Equation (1.7) also appears in the planar Feynman diagram expansions of
Hermitian matrix models, which were introduced and studied in the
classical papers  
[BIPZ], [BIZ], [IZ] by  Br{\'{e}}zin, Bessis, Itzykson, Parisi, and
Zuber and in the well-known recent works by
Br{\'{e}}zin, Kazakov [BK], Duglas, Shenker [DS],  and Gross,  
 Migdal [GM] devoted to  the matrix models for 2D quantum gravity
(see also [Dem] and [Wit]). In
fact, it is the latter  
context that broadened the interest to the Freud equation (1.7) and
brought in the area  
new powerful analytic methods from the theory of integrable
systems. It turns out [FIK1,2]  
that equation (1.7) admits $2\times 2$ matrix Lax pair representation 
(see equation (3.15) below), which allows one to identify Freud
equation (1.7) as a  
discrete Painlev{\'{e}} I equation and imbeds it in the framework of
the Isomonodromy  
Deformation Method suggested in 1980 by Flaschka and Newell [FN] and
by Jimbo, Miwa, and  
Ueno [JMU] (about analytical aspects of the method see, e.g., [IN] and
[FI]). The relevant  
Riemann-Hilbert formalism for (1.7) was developed in [FIK1,2] as
well. It was used in  
[FIK1-3] together with the Isomonodromy Method for the  asymptotic
analysis of the  
solution of (1.7), which is related to the double-scaling limit in the
2D quantum gravity   
studied in [BK], [DS], [GM]. 

The solution of (1.7) which is analysed in [FIK] is different from the one 
associated to the orthogonal polynomials (1.3). It corresponds to the
system of  
orthogonal polynomials on the certain rays in complex
domain. Nevertheless, the  
basic elements of the  Riemann-Hilbert isomonodromy scheme suggested
in [FIK] can be easiely  
extended (not the concrete analysis of course) to the other systems 
of semiclassical orthogonal polynomials (see e.g. [FIK4]). The 
proof of Theorem 1.1 is based on the approach of [FIK] combined with  
the Nonlinear Steepest Descent Method  proposed recently by Deift and
Zhou [DZ] 
for analyzing the asymptotics of oscillatory matrix Riemann-Hilbert
problems. We appeal to 
the Deift-Zhou method  in 
the section 10.5  where we  construct explicitly and then justify
rigorously the asymptotic solution of  
the master Riemann-Hilbert problem associated to the orthogonal
polynomials (1.3) 
(see problem {\bf (i-iii)} and (5.16-18) below). The use  
of the method of [DZ] rather than the original approach of [FIK] at
this point of the proof  
simplifies it dramatically (see Appendix 1 for more details).

The paper is organized as follows:

In the next section we use the results listed in Theorem 1.1 for proving 
the universality of the local distribution of eigenvalues in the
matrix model with  quartic potential. 

In sections 3-5 we reproduce in a slightly different way and with 
more details the results of [FIK] concerning the Lax pair
representation of  
equation (1.7) and the matrix Riemann-Hilbert reformulation of the
orthogonal polynomial  
system (1.3). In particular, we show that there is an exact and simple 
relation  
between orthogonal polynomials $P_{n}(z)$ and the $2\times 2$
matrix-valued  
function $\Psi_{n}(z)$ which solves the following matrix
Riemann-Hilbert problem on  
a line (the problem (5.16-18) below) :
$$\eqalign{
&\text{{\bf (i)}}\quad \Psi_{n}(z)\; \text{is analytic
in}\; \C\setminus\R\,,\; \text{and it has a jump at the real
line.}  
\cr
&\text{{\bf (ii)}}\quad \Psi_{n}(z)\sim 
\left(\sum_{k=0}^\infty{\G_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z+\la_n\right)\sg_3},
\qquad z\to\infty,\cr
\la_n&={1\over 2}\ln h_n,\quad
\sg_{3}=
\pmatrix
1 & 0 \\
0 & -1
\endpmatrix,\qquad
\G_0=
\pmatrix
1 & 0 \\
0 & R_n^{-1/2}
\endpmatrix,
\qquad
\G_1=
\pmatrix
0 & 1 \\
R_n^{1/2} & 0
\endpmatrix.\cr
&\text{{\bf (iii)}}\quad \Psi_{n+}(z)=\Psi_{n-}(z)S,\qquad
\text{Im}\,z=0,\qquad 
S= 
\pmatrix
1 & -2\pi i \\
0 & 1
\endpmatrix .\cr}
$$
As it is explained at the end of section 5, in the setting of the
Riemann-Hilbert problem  
{\bf (i-iii)} the real quantities $R_{n}$ and $\la_{n}$ {\it are not
the given data}. 
 They are evaluated via the solution $\Psi_{n}(z)$, which is
determined by conditions  
{\bf (i-iii)} uniquely without any prior specification of $R_{n}$ and
$\la_{n}$. 

\noindent
Simultaneously, the function $\Psi_{n}(z)$ satisfies the Lax pair (see
equation (3.15) below)  
whose second equation is the linear differential equation:

$$
\frac{d\Psi_{n}(z)}{dz}=NA_n(z)\Psi_n(z),
\eqno (1.6')
$$
$$
A_n(z)=
\pmatrix
-({tz\over 2}+{gz^3\over 2}+gzR_n) 
& R_n^{1/2}[t+gz^2+g(R_n+R_{n+1})]\\
-R_n^{1/2}[t+gz^2+g(R_{n-1}+R_{n})] 
& {tz\over 2}+{gz^3\over 2}+gzR_n
\endpmatrix\,.
$$

\noindent
The jump matrix $S$ in {\bf (iii)} constitutes the only nontrivial
Stokes matrix 
(for more details see sections 4, 5, and  10.1-3) corresponding to the
system (1.$6'$) with  
$R_{n}$ generated by the orthogonal polynomials (1.3). This reduces
the problem of  
the asymptotic analysis of the quantities $P_{n}(z)$ and $R_{n}$ to
the asymptotic  
solution of the matrix  Riemann-Hilbert problem {\bf (i-iii)}, i.e. to
the asymptotic solution  
of the corresponding inverse monodromy problem for differential
equation (1.$6'$). 

We do not assume that the reader is well-familiar to the 
general monodromy theory of the systems of linear ordinary
differential equations (whose 
comprehensive modern exposition can be found in the book
[Sib] of Sibuya). Therefore, we try to make 
the paper as much self-contained as possible. In fact, the sections 4,5
below give an 
elementary introduction into the central for the monodromy theory
concept of the {\it Stokes Phenomena}. 

Short but important section 6 provides a formal asymptotic
ansatz indicated in  
(1.14) for the recurrence coefficients $R_{n}$. Using this ansatz and
reducing the matrix 
 differential equation (1.$6'$) to the scalar Schr{\"{o}}dinger
equation (see the equation (7.1) below) 
 we derive in  the
sections 7--9 all the asymptotic formulas announced in Theorem 1.1. The
analysis in these  
sections is based on the semiclassical technique, and it is formal
since we have not yet proven  
the asymptotic formula (1.14) for $R_{n}$. 

The proof of (1.14) together with the rigorous evaluation of the
asymptotics of the  
orthogonal polynomials $P_{n}(z)$ on the whole complex plane $z$,
which include again  
the asymptotic equations (1.15-23), is given in section 10. The main
objective of this  
section is to build up and then to justify the asymptotic solution of the
matrix Riemann-Hilbert  
problem {\bf (i-iii)}. To this end we first need the general monodromy
theory for the  
basic matrix differential equation (1.$6'$) under the only assumption
that $R_{n-1}$, $R_{n}$,  
and $R_{n+1}$ are real numbers satisfying the Freud equation
(1.7). We refer the reader  
to the monograph [Sib] for the general background on the monodromy
theory for the systems  
of  ordinary differential equations with rational coefficients. The
particular case of the  
 system (1.$6'$), (1.7) is spelled out in [FIK2]. For the reader's
convinience we repeat,  
again with more details, the corresponding derivations in the
subsections 10.1-3. Following [FIK], 
 we formulate the general matrix Riemann-Hilbert problem (see the
equations (10.15) below) on the  
six rays in complex domain $z$, which is equivalent to the inverse
monodromy problem for the 
system (1.$6'$) and which includes the orthogonal polynomial
Riemann-Hilbert problem {\bf (i-iii)}  
as a particular triangular case (subsection 10.3). After that, in
the subsection 10.4 we  
solve asymptotically the {\it{direct monodromy problem}} for the equation
(1.$6'$) {\it{assuming}}  
for $R_{n}$ the ansatz (1.14). Our analysis in this subsection is
based on the version of  
complex WKB method which was recently suggested in [Kap] for
asymptotic solution of the  
direct monodromy problems for the $2\times 2$ systems with rational
coefficients. The 
 results obtained in subsection 10.4 extend the asymptotic formulae
for $P_{n}(z)$  
found in the sections 7--9 into the whole complex plane $z$. They are also
used in the subsection 10.5  
for introducing an {\it{explicit}} matrix-valued function (see
the equation (10.135) below)  
which is shown (Proposition 10.3)
to solve asymptotically the basic Riemann-Hilbert
problem {\bf (i-iii)}.  
This provides us with the asymptotic solution of the {\it{inverse
monodromy problem}} for 
 equation (1.$6'$) related to the orthogonal polynomials (1.3),
which proves estimate (1.14) and completes the proof 
 of  Theorem 1.1. The basic ideas and technique used in
the subsection 10.5 are those  
of the Deift-Zhou nonlinear steepest descent method [DZ]. Finally, in
the Appendix 1 we 
 present an alternative approach to the solution of the orthogonal
polynomial 
inverse monodromy problem. It is based directly on the principle
result of the subsection 10.4, 
i.e., on the fact that the monodromy data of the model system (1.$6'$),
(1.14) are  
close to the genuine monodromy data (matrix $S$ from {\bf(iii)} )
corresponding  
to the orthogonal polynomials (1.3).
This is the original ideology used in [FIK] for the orthogonal
polynomial problem considered there.

%It is worth mentioning that 
%the formal proof of Theorem 1.1. needs only the
%subsections 10.1-4 as a {\it{motivation}} for the otherwise
%self-contained  
%(although not at all obvious a prior!) constructions  of subsection
%10.5. This is the 
%usual situation when the Deift-Zhou method is applied (see  [DZ2] and
%also [DIZ]).  
%Nevertheless, we decided to include subsections 10.1-4 (and Appendix
%1) to reveal to the reader  
%the whole ``technology'' of the Riemann-Hilbert and the Isomonodromy
%approaches,  
%which perhaps are not yet broadly known to the specialists in the
%theory of random 
% matrices and orthogonal polynomials.
\vskip .2in

As has already been mentioned above, the Freud equation (1.7)
 has a meaning of the discrete Painlev{\'{e}} I equation. We refer 
the reader to the papers   [FIZ], [NPCQ], [GRP], [Mag3,4], [Meh2]
 for more on the subject. 
As it was first noticed by Kitaev, the equation (1.7) can be also
interpreted as  
the Backlund-Schlezinger transform of the classical Painlev{\'{e}} IV
equation so  
that the  coefficients $R_{n}$ coincide, in fact, with the special  PIV 
function (see [FIK1,3] 
for more details). This PIV function, in turn, can be expressed in terms
of certain   
$n\times n$ determinants involving the parabolic cylinder functions
(see [Mag4]).  
In the present paper however we do not use these algebraic by their
nature connections  
to the modern Painlev{\'{e}} theory. We use its analytical methods. 



\vskip 1cm     

\beginsection 
2. Universality of the Local Distribution of Eigenvalues in the
Matrix Model
\par

Theorem 1.1 can be applied to proving the universality of the
local distribution of eigenvalues in the matrix model with quartic
potential. The matrix model is defined as follows. Let
$M=(M_{jk})_{j,k=1,\dots N}$ be a Hermitian random matrix, with
the probability distribution
$$
\mu_N(dM)=Z_N^{-1}e^{-N\Tr V(M)}dM,
\eqno (2.1)
$$
where 
$$
V(M)=a_0+a_1M+\dots+a_{2p}M^{2p},\qquad a_{2p}>0,
$$
is a polynomial,
$$
dM=\prod_{j<k}\left(d\,\Re M_{jk}\, d\,\Im M_{jk}\right)
\prod_{j}dM_{jj},
$$
is the Lebesgue measure on the space of Hermitian matrices, and
$$
Z_N=\int e^{-N\Tr V(M)}dM 
$$
is the grand partition function. Let $\la_1\le \dots \le \la_N$ be
eigenvalues of $M$. Consider the distribution function of the
eigenvalues, 
$$
F_N(z)=N^{-1}\,\text{\rm E}\, \#\,\{j\: \la_j\le z\}.
$$
and the density function 
$$
p_N(z)=F'_N(z).
$$
In the matrix model we are interested in the following problems:

\item {(1)} To calculate the limit density
$p(z)=\lim_{N\to\infty}p_N(z)$. 

\item {(2)} To calculate the limit local distribution (scaling limit)
of eigenvalues at regular points, where $p(z)$  is positive, and
at end-points, where $p(z)$ vanishes.

\item {(3)} To calculate the free energy
$$
f(a_0,\dots,a_{2p})=-\lim_{N\to\infty}{\log Z_N(a_0,\dots,a_{2p})\over
N^2} 
$$
and to find the points of nonanaliticity of $f$ (critical points)
in the space of the parameters $a_0,\dots,a_{2p}$. To
calculate the critical asymptotics of the recursive coefficients $R_n$
and of the local distribution of eigenvalues (double scaling limit). 

Dyson [Dys] (see also [Meh1] and [TW1]) proves a
formula which expresses the correlations between the eigenvalues
of $M$ in terms of orthogonal polynomials. Namely, the $m$-point
correlation function is written as
$$
K_{Nm}(z_1,\dots,z_m)=
{1\over m!}\,\det\,\bigl(Q_N(z_j,z_k)\bigr)_{j,k=1,\dots,m}
\eqno (2.2)
$$
where
$$
Q_N(z,w)=\sum_{j=1}^N \psi_j(z)\psi_j(w),
\eqno (2.3)
$$
and $\psi_j(z)$ is defined in (1.9). When $m=1$ the correlation
function reduces to the function $Np_N(z)$, hence
$$
p_N(z)=N^{-1}\sum_{j=1}^N \psi_j^2(z).
$$
By the Christoffel-Darboux
formula (see, e.g., [Sze]), the kernel $Q_N(z,w)$ can be written as
$$
Q_N(z,w)={\sqrt{R_{N+1}}\,\left[\psi_{N+1}(z)\psi_N(w)
-\psi_N(z)\psi_{N+1}(w)\right]
\over z-w}\,,
\eqno (2.4)
$$
and
$$
p_N(z)={\sqrt{R_{N+1}}\,\bigl[
\psi'_{N+1}(z)\psi_N(z)-\psi'_N(z)\psi_{N+1}(z)\bigr]\over N} \,.
\eqno (2.5)
$$
The formula (1.24) is valid in a complex neighborhood of the interval
$[z_1+\de, z_2-\de]$ and this allows us to differentiate it. We will
assume that
$$
t<t_{\text{cr}}=-2\sqrt g
$$
(two-cut case), hence we can use $n=N$ in the asymptotic formulae
(1.15)--(1.18). For the sake of brevity we rewrite (1.24), (1.15) as
$$
\psi_n={Cz\over \sqrt{\z_z}}\, \cos(N\z+\eta),
\eqno (2.6)
$$
where 
$$\eqalign{
&C=\sqrt{g/\pi}\,;\qquad \z=\z(z;\la')=\int_{z_2}^z|U_0(v;\la')|^{1/2}dv
+{\pi\over 4N}\,;\cr
&\z_z={\d \z(z;\la')\over \d z}=|U_0(z;\la')|^{1/2}\,;
\qquad U_{0}(z;\la')=z^2\left[{(gz^2+t)^2\over 4}-\la' g\right]\,;\cr
&\eta=-{(-1)^n\over 4}\,\chi(z;\la')=-{(-1)^n\over 4}\,
\arccos y,\qquad y={2\sqrt{\la'g}-tx\over 2\sqrt{\la' g}\,x-t},\qquad
x={gz^2+t\over 2\sqrt{\la'g}}\,,\cr} 
\eqno (2.7)
$$
and we drop terms of the order of $N^{-1}$. In addition, (1.24)
gives that modulo terms of the order of $N^{-1}$,
$$
\psi_{n\pm 1}={Cz\over \sqrt{\z_z}}\, \cos(N\z\pm\xi-\eta),
\eqno (2.8)
$$
where
$$
\xi={\d\z(z;\la')\over \d\la'}=-{1\over 2}\,\arccos x,\qquad
x={gz^2+t\over 2\sqrt{\la'g}}\,.
\eqno (2.9)
$$
The finctions $\psi_n$ satisfy the recursive equation 
$$
z\psi_n=\sqrt{R_{n+1}}\,\psi_{n+1}+\sqrt{R_n}\,\psi_{n-1}
$$
(see (1.4)), hence from (2.6) and (2.8) we obtain that
$$\eqalign{
z\cos(N\z-\eta)\cos(2\eta)&-z\sin(N\z-\eta)\sin(2\eta)\cr
&=\sqrt{R_{n+1}}\,\cos(N\z-\eta)\cos \xi
-\sqrt{R_{n+1}}\,\sin(N\z-\eta)\sin \xi\cr
&+\sqrt{R_n}\,\cos(N\z-\eta)\cos \xi
+\sqrt{R_{n}}\,\sin(N\z-\eta)\sin \xi.\cr}
$$
Equating the coefficients at $\cos(N\z-\eta)$ and $\sin(N\z-\eta)$,
we obtain that
$$\eqalign{
&z\cos 2\eta=(\sqrt{R_{n+1}}+\sqrt{R_n})\,\cos \xi,\cr 
&z\sin 2\eta=(\sqrt{R_{n+1}}-\sqrt{R_n})\,\sin \xi.\cr}
\eqno (2.10)
$$
These formulae can be checked directly from (1.14), (2.7) and (2.9). 
Differentiating (2.6) and (2.8) in $z$, we get that
$$\eqalign{
\psi_n'&=-Cz\sin(N\z+\eta)\,N\sqrt{\z_z}+O(1),\cr  
\psi_{n+1}'&=-Cz\sin(N\z+\xi-\eta)\,N\sqrt{\z_z}+O(1),\cr}
$$  
hence by (2.5), modulo terms of the order of $N^{-1}$,
$$\eqalign{
p_N&=\sqrt{R_{N+1}}\,C^2z^2\left[-\sin(N\z+\xi-\eta)\cos(N\z+\eta)+
\cos(N\z+\xi-\eta)\sin(N\z+\eta)\right]\cr
&=\sqrt{R_{N+1}}\,C^2z^2\sin(2\eta-\xi)
=\sqrt{R_{N+1}}\,C^2z^2(\sin 2\eta\cos\xi-\cos 2\eta\sin\xi),\cr}
\eqno (2.11)
$$
and by (2.10),
$$\eqalign{
p_N&=\sqrt{R_{N+1}}\,C^2z\left[(\sqrt{R_{N+1}}-\sqrt{R_N})\sin\xi\cos\xi
-(\sqrt{R_{N+1}}+\sqrt{R_N})\sin\xi\cos\xi\right]\cr
&=-\sqrt{R_{N+1}R_N}\, C^2z\sin 2\xi.\cr}
$$
Since modulo terms of the order of $N^{-1}$,
$$
R_{N+1}R_N={1\over g}\,;\qquad C^2={g\over \pi}\,;\qquad \sin
2\xi=\sin(-\arccos x)=-\sqrt{1-x^2},
$$
we obtain that
$$
p_N={\sqrt{ g}\over \pi}\,z\sqrt{1-x^2}+O(N^{-1}).
$$
Substituting the value of $x$ gives that
$$
p_N(z)=p(z)+O(N^{-1}),
$$
where
$$
p(z)={1\over \pi}\,|U_0(z;1)|^{1/2}={|z|\over
\pi}\,\left[{g-\left({gz^2+t\over 2}\right)^2}\right]^{1/2}
={g|z|\over
2\pi}\,\sqrt{(z^2-z_1^2)(z_2^2-z^2)}\,
\eqno (2.12)
$$
and
$$
z_{1,2}=\left({{-t\mp 2\sqrt g\over g}}\right)^{1/2}\,.
\eqno (2.13)
$$ 
This gives an explicit formula for the limiting density $p=p(z)$ of
eigenvalues (integrated density of states). In a completely different
approach, based on the Coulomb 
gas representation of the matrix model, this formula is
derived in the work [BPS] of Boutet de Monvel, Pastur, and
Shcherbina, as an application  of the proven in [BPS] variational
principle  for the integrated density of states. 
 


The scaling limit of the correlation function
$K_{Nm}(z_1,\dots,z_m)$ at a regular point $z$, where $p(z)>0$, 
is defined as
$$
K_m(u_1,\dots,u_m)=\lim_{N\to\infty} \bigl[Np(z)\bigr]^{-m}
K_{Nm}\left( z+{u_1\over Np(z)},\dots, z+{u_m\over Np(z)}\right). 
$$
Observe that $K_m(u_1,\dots,u_m)$ is the limiting $m$-point correlation
function of the rescaled eigenvalues
$$
\mu_j=Np(z)(\la_j-z).
$$
The rescaling reduces the mean value of the spacing $\mu_{j+1}-\mu_j$
to 1. From Dyson's formula (2.2),
$$
K_m(u_1,\dots,u_m)={1\over m!}\,
\det\bigl(Q(u_j,u_k)\bigr)_{j,k=1,\dots,m},
\eqno (2.14)
$$
where
$$
Q(u,v)=\lim_{N\to\infty} \bigl[Np(z)\bigr]^{-1} 
Q_N\left( z+{u\over Np(z)}, z+{v\over Np(z)}\right).
\eqno (2.15)
$$
By (2.4),
$$
\bigl[Np(z)\bigr]^{-1} 
Q_N\left( z+{u\over Np(z)}, z+{v\over Np(z)}\right)
={\sqrt{R_{N+1}}\over u-v}\,T_N\left( z+{u\over Np(z)}, z+{v\over
Np(z)}\right)\,,
\eqno (2.16)
$$
where
$$
T_N(z,w)=\psi_{N+1}(z)\psi_N(w)
-\psi_N(z)\psi_{N+1}(w).
$$
By (2.6) and (2.8), modulo terms of the order of $N^{-1}$,
$$\eqalign{
&\psi_N\left(z+{u\over Np(z)}\right)={Cz\over \sqrt{\z_z}}\,
\cos(N\z+\a+\eta),\qquad \a={\z_zu\over Np(z)},\cr 
&\psi_{N+1}\left(z+{u\over Np(z)}\right)={Cz\over \sqrt{\z_z}}\,
\cos(N\z+\a+\xi-\eta),\cr}
\eqno (2.17)
$$
hence
$$\eqalign{
T_N\left( z+{u\over Np(z)}, z+{v\over
Np(z)}\right)&={C^2z^2\over \z_z}\,
[\cos(N\z+\a+\xi-\eta)\cos(N\z+\b+\eta)\cr
&-\cos(N\z+\a+\eta)\cos(N\z+\b+\xi-\eta)]\cr
&={C^2z^2\over 2\z_z}
\,[\cos(\a+\xi-\b-2\eta)-\cos(\a-\xi-\b+2\eta)]\cr 
&={C^2z^2\over \z_z}\, \sin (2\eta-\xi)\sin(\a-\b),\cr}
\eqno (2.18)
$$
where
$$
\a={\z_zu\over p(z)}={|U_0(z)|^{1/2}u\over |U_0(z)|^{1/2}\pi^{-1}}
=\pi u,\qquad
\b=\pi v\,.
\eqno (2.19)
$$
By (2.11) and (2.12),
$$
\sqrt{R_{N+1}}\,C^2z^2\sin(2\eta-\xi)=p(z)={1\over
\pi}\sqrt{|U_0(z;1)|}= \z_z(z;1),
$$
hence (2.18) implies that
$$\eqalign{
\sqrt{R_{N+1}}\,T_N\left( z+{u\over Np(z)}, z+{v\over
Np(z)}\right)&
=\sqrt{R_{N+1}}\,{C^2z^2\over \z_z}\,\sin(2\eta-\xi) \sin(\a-\b)\cr
&={\sin(\a-\b)\over \pi}={\sin\pi(u-v)\over\pi}\,,\cr}
$$
and, by (2.15), (2.16),
$$
Q(u,v)={\sin\pi(u-v)\over \pi(u-v)}\,.
$$
This proves the Dyson sine-kernel for the local distribution of
eigenvalues at a regular point $z$. In a completely different approach,
the sine-kernel at regular points is proved in [PS]. 

{\it Remark.} It follows from the Dyson sine-kernel, due to the Gaudin
formula (see, e.g., [Meh1]), that the spacing distribution of
eigenvalues is determined 
by the Fredholm determinant $\det (1-Q(x,y))_{x,y\in J}$. The
asymptotics of this determinant as $|J|\to \infty$ has been studied
intensively since the classical works by des Cloizeaux, Dyson, Gaudin,
Mehta, and Widom (see [Meh1] for the history of the subject).
The Riemann-Hilbert approach to this asymptotics has been developed in
the paper [DIZ].   

 
At the endpoints of the spectrum we use the
semiclassical asymptotics (1.18), and it leads to the Airy
kernel
(cf. the papers of Bowick and Br\'ezin [BB], Forrester [For], Moore
[Moo], and Tracy and Widom [TW2], where the Airy kernel is discussed
for the  Gaussian matrix model and some other related models, and, in
addition,  some nonrigorous arguments are 
given for general matrix models). 
Consider for the sake of definiteness $z=z_2$.

By (1.18), 
$$
\psi_n={DN^{1/6}z\over \sqrt{\f_N'}}\left[\Ai\bigl(N^{2/3}\f_N\bigr)
+O(N^{-1})\right],\qquad D=\sqrt g,
\eqno (2.20)
$$
where $\f_N$ is defined in (1.19). From (1.19),
$$
\sqrt{\f_N}\,{\d\f_N\over \d\la'}= {\d\over \d\la'}\int_{z_2^{(N)}}^z
\sqrt {U_N(v)}\,dv.
$$
This allows us to derive from (2.20) that 
$$\eqalign{
\psi_n&={DN^{1/6}z\over \sqrt{\f_0'}}\left[\Ai(N^{2/3}\f_0+N^{-1/3}\om)
+O(N^{-1})\right],\cr
\psi_{n\pm 1}&={DN^{1/6}z\over
\sqrt{\f_0'}}\left[\Ai(N^{2/3}\f_0\pm N^{-1/3}\rho-N^{-1/3}\om)
+O(N^{-1})\right],\cr}
\eqno (2.21)
$$
where
$$\eqalign{
&\f_0=\f_0(z;\la')=\left({3\over
2}\int_{z_2}^z\sqrt{U_0(v;\la')}\,dv\right)^{2/3},\cr
&\rho=\rho(z;\la')={\xi(z;\la')\over \sqrt{\f_0(z;\la')}}\,;
\qquad \om=\om(z;\la')={\eta(z;\la')\over \sqrt{\f_0(z;\la')}}\,,\cr}
\eqno (2.22)
$$
and
$$\eqalign{
&\xi(z;\la')=-{\cosh^{-1}x\over 2},\qquad x={gz^2+t\over 2\sqrt{\la'g}};
\cr 
&\eta(z;\la')=-{(-1)^n\over 4}\,\cosh^{-1}y,\qquad
y={2\sqrt{\la'g}-tx\over 2\sqrt{\la'g}x-t}\,.\cr}
\eqno (2.23)
$$
The formulae (2.22), (2.23) define the functions
$\f_0(z;\la'),\;\rho(z;\la')$ and   
$\om(z;\la')$ for $z\ge z_2$. It is easy to check that
these functions  are analytic in $z$ at $z=z_2$, and they can be
continued  analytically to the interval $z>z_1$. In addition,  
$$\eqalign{
&U_0(z_2;\la')=0,\qquad {\d U_0\over\d z}(z_2;\la')
=\kappa=2(\la')^{1/2}g^{3/2}z_2^3;\cr
&\f_0(z_2;\la')=0,\qquad
{\d\f_0\over\d z}(z_2;\la')=\kappa^{1/3}=2^{1/3}
(\la')^{1/6}g^{1/2}z_2; \cr
&\rho(z_2)
=-2^{-2/3}(\la')^{-1/3};\cr
&\om(z_2)=-{(-1)^n\over 4}\,2^{1/3}(\la')^{-1/3}z_1z_2^{-1}.\cr}
\eqno (2.24)
$$
We will consider
$$
z=z_2+N^{-2/3}\a,\qquad w=z_2+N^{-2/3}\b,
\eqno (2.26)
$$
where $\a$ and $\b$ are fixed. 

Substitution of (2.21) into the recursive
equation  
$$
z\psi_n=\sqrt{R_{n+1}}\psi_{n+1}+\sqrt{R_n}\psi_{n-1}
$$
gives the equations
$$\eqalign{
z_2&=\sqrt{R_{n+1}}+\sqrt{R_n},\cr
z_2\om&=\sqrt{R_{n+1}}(\rho-\om)+\sqrt{R_n}(-\rho-\om),\cr}
\eqno (2.27)
$$
from where
$$
(\sqrt{R_{n+1}}+\sqrt{R_n})\,2\om=(\sqrt{R_{n+1}}-\sqrt{R_n})\,\rho.
\eqno (2.28)
$$
Similarly,
$$
z_1=(-1)^n(\sqrt{R_{n+1}}-\sqrt{R_n}),
$$
hence
$$
2\om={(-1)^nz_1\rho\over z_2}\,,
\eqno (2.29)
$$
which agrees with (2.24).

Substituting the formulae (2.21) into (2.4) and throwing away terms of
the lower order, we obtain that
$$\eqalign{
Q_N(z,w)&={\sqrt {R_{N+1}}\,D^2 N^{1/3}z_2^2\over (z-w)\f_0'}\cr
&\times \left[\Ai\bigl(N^{2/3}\f_0(z)+ N^{-1/3}\rho-N^{-1/3}\om\bigr) 
\Ai\bigl(N^{2/3}\f_0(w)+N^{-1/3}\om\bigr)\right.\cr
&-\Ai\left.\bigl(N^{2/3}\f_0(z)+N^{-1/3}\om\bigr)\,
\Ai\bigl(N^{2/3}\f_0(w)+
N^{-1/3}\rho-N^{-1/3}\om\bigr)\right]\,,\cr} 
\eqno (2.30)
$$
where $\f_0',\;\rho$ and $\om$ are taken at $z_2$. Taking the linear
part of $\Ai$ we obtain that
$$
Q_N(z,w)={\sqrt {R_{N+1}}\,D^2 N^{1/3}z_2^2\over (z-w)\f_0'}
\left[ \Ai(u)\Ai'(v)-\Ai'(u)\Ai(v)\right]
(2\om-\rho)N^{-1/3},
$$
where
$$
u=\f_0'\,\a,\qquad v=\f_0'\,\b.
$$
By (2.28) and (2.24), modulo terms of the order of $N^{-1/3}$,
$$
\sqrt{R_{N+1}}\,(2\om-\rho)=\sqrt{R_{N+1}}\,{(-2\sqrt{R_n})\over
\sqrt{R_{N+1}} +\sqrt{R_n}}\,(-2^{-2/3})=2^{1/3}g^{-1/2}z_2^{-1},
$$
hence
$$
Q_N(z,w)=N^{2/3}2^{1/3}g^{1/2}z_2\,{\Ai(u)\Ai'(v)-\Ai'(u)\Ai(v)\over
u-v} +O(N^{1/3}).
$$
Thus,
$$
\lim_{N\to\infty}{1\over cN^{2/3}}Q_N\left(z_2+{u\over
cN^{2/3}},z_2+{v\over cN^{2/3}}
\right)={\Ai(u)\Ai'(v)-\Ai'(u)\Ai(v)\over u-v},
$$
where
$$
c=\f_0'(z_2;1)=2^{1/3}g^{1/2}z_2.
$$
This proves the Airy kernel at the endpoint $z_2$. The endpoint $z_1$
is treated similarly.



%Differentiation of the equations (2.21) in $z$ gives that
%$$\eqalign{
%\psi_n'&=DN^{5/6}z\sqrt{\z'}\Ai'(N^{2/3}\z+N^{-1/3}\eta),\cr
%\psi_{n+1}'&=DN^{5/6}z
%\sqrt{\z'}\Ai'(N^{2/3}\z+N^{-1/3}\f-N^{-1/3}\eta),\cr}
%\eqno (2.25)
%$$
%hence the density of eigenvalues is equal to
%$$\eqalign{
%p_N&=N^{-1}\sqrt{R_{N+1}}\,(\psi_{N+1}'\psi_N-\psi_N'\psi_{N+1})\cr
%&=\sqrt{R_{N+1}}\,D^2z^2\,(\Ai'(\a_{N+1})\Ai(\a_N)
%-\Ai'(\a_N)\Ai(\a_{N+1}))+O(N^{-1}),\cr}
%$$
%where
%$$
%\a_N=N^{2/3}\z+N^{-1/3}\eta,\qquad
%\a_{N+1}=N^{2/3}\z+N^{-1/3}\f-N^{-1/3}\eta.
%$$
%Taking the linear part of $\Ai$ and $\Ai'$ we obtain that
%$$
%p_N=N^{-1/3}\sqrt{R_{N+1}}\,[-\Ai''(N^{2/3}\z)\Ai(N^{2/3}\z)
%+(\Ai'(N^{2/3}\z))^2](2\eta-\f)+O(N^{-1}).
%$$
%Since by (2.24),
%$$
%\sqrt{R_{N+1}}\,(2\eta-\f)=
%$$


 
\beginsection 3. The Lax Pair for the Freud Equation \par

Let
$$
\psi_n(z)={1\over \sqrt{h_n}}\, P_n(z) e^{-NV(z)/2}\,.
\eqno (3.1)
$$
Then
$$
\int_{-\infty}^\infty \psi_n(z)\psi_m(z)\, dz=\de_{nm}.
\eqno (3.2)
$$
Recursive equation for $\psi_n(z)$ follows from (1.4):
$$
z\psi_n(z)=R_{n+1}^{1/2}\psi_{n+1}(z)+R_n^{1/2}\psi_{n-1}(z).
\eqno (3.3)
$$
In addition,
$$\eqalign{
\psi'_n(z)=
&-\left( N\,{g\over 2}\, R_{n+1}^{1/2} R_{n+2}^{1/2} R_{n+3}^{1/2}
\right)\psi_{n+3}(z)\cr
&-\left[ N\,{t\over 2}\, R_{n+1}^{1/2}
+N\,{g\over 2}\, R_{n+1}^{1/2}(R_n+R_{n+1}+R_{n+2})\right]
\psi_{n+1}(z)\cr
&+\left[ N\,{t\over 2}\, R_{n}^{1/2}
+N\,{g\over 2}\, R_{n}^{1/2}(R_{n-1}+R_{n}+R_{n+1})\right]
\psi_{n-1}(z)\cr
&+\left( N\,{g\over 2}\, R_{n-2}^{1/2} R_{n-1}^{1/2} R_{n}^{1/2}
\right)\psi_{n-3}(z)\cr}
\eqno (3.4)
$$
Let
$$
\vec \Psi_n(z)=
\pmatrix
\psi_n(z)\\
\psi_{n-1}\endpmatrix\,.
\eqno (3.5)
$$
Then combining (3.3) with (3.4), one can obtain (cf. (3.1-7) in [FIK2]) that
$$
\left\{
\eqalign{
\vec\Psi_{n+1}(z)&=U_n(z)\vec\Psi_n(z),\cr
\vec\Psi'_{n}(z)&=NA_n(z)\vec\Psi_n(z),\cr}
\right.
\eqno (3.6)
$$
where
$$
U_n(z)=
\pmatrix R_{n+1}^{-1/2}z& -R_{n+1}^{-1/2}R_n^{1/2}\\
1 & 0 \endpmatrix\,,
\eqno (3.7)
$$
and
$$
A_n(z)=
\pmatrix
-({tz\over 2}+{gz^3\over 2}+gzR_n) 
& R_n^{1/2}[t+gz^2+g(R_n+R_{n+1})]\\
-R_n^{1/2}[t+gz^2+g(R_{n-1}+R_{n})] 
& {tz\over 2}+{gz^3\over 2}+gzR_n
\endpmatrix\,.
\eqno (3.8)
$$
Observe that
$$
\text{tr}\, A_n(z)=0
$$
and
$$
\det A_n(z)=-\left({tz\over 2}+{gz^3\over 2}\right)^2
+gR_n\left(t+gR_{n-1}+gR_n+gR_{n+1}\right)z^2+R_n\t_{n-1}\t_n,
\eqno (3.9)
$$
where
$$
\t_n=t+gR_n+gR_{n+1}.
\eqno (3.10)
$$
Due to (1.7), we can rewrite $\det A_n(z)$ as
$$
\det A_n(z)=-\left({tz\over 2}+{gz^3\over 2}\right)^2
+{gnz^2\over N}+R_n\t_{n-1}\t_n.
\eqno (3.9')
$$
Compatibility condition of the equations (3.6) is
$$
U_n'(z)=NA_{n+1}(z)U_n(z)-NU_n(z)A_n(z).
\eqno (3.11)
$$
Restricting this equation to the matrix element $U_{n,11}'(z)$ we obtain that
$$
J_{n+1}-J_n=1,
\eqno (3.12)
$$
where
$$
J_n=NR_n[t+g(R_{n-1}+R_n+R_{n+1})].
$$
Hence $J_n=n+$const. Since $J_0=0$, in fact, $J_n=n$. 
This means, that the compatibility condition (3.10),
together with the initial value $J_0=0$ imply 
(1.7), and thus the equations (3.6) give the Lax pair for the
nonlinear difference Freud equation (1.7).
In addition, the equation (3.12) gives the recursive equation
$$
R_{n+1}\t_n\t_{n+1}=R_n\t_{n-1}\t_n+{\t_n\over N}\,.
\eqno (3.13)
$$

The equations (3.6) have two linear independent solutions 
and $\vec \Psi_n(z)$ is one of them. We will consider
another solution,
$$
\vec\Phi_n(z)=
\pmatrix
\f_n(z)\\ \f_{n-1}(z)
\endpmatrix,
$$
and the $2\times 2$ matrix
$$
\Psi_n(z)=
\pmatrix
\psi_n(z) & \f_n(z)\\
\psi_{n-1}(z) & \f_{n-1}(z)
\endpmatrix
\eqno (3.14)
$$
which satisfies the same equations,
$$
\left\{
\eqalign{
\Psi_{n+1}(z)&=U_n(z)\Psi_n(z),\cr
\Psi'_{n}(z)&=NA_n(z)\Psi_n(z).\cr}
\right.
\eqno (3.15)
$$
To define $\vec \Phi_n(z)$ we consider an arbitrary, linearly independent
with $\vec\Psi_1(z)$, solution of the differential equation
$\vec\Phi'_1(z)= NA_1(z)\vec\Phi_1(z)$, and then define
$\vec\Phi_n(z),\;n\ge 2$, with the help of 
the recursive equation $\vec\Phi_{n+1}(z)=U_n(z)\vec\Phi_n(z)$. The equation
(3.11) then leads to the differential equation
$\vec\Phi'_n(z)=NA_n\vec\Phi_n(z) $ for $n\ge 2$. 
The equation $\vec \Phi_{n+1}(z)=U_n(z)\vec\Phi_n(z)$ means that
$\f_n(z)$ satisfies the recursive equation (3.3), i.e.,
$$
z\f_n(z)=R_{n+1}^{1/2}\f_{n+1}(z)+R_n^{1/2}\f_{n-1}(z).
\eqno (3.16)
$$
Since tr$\,A_n(z)=0$, the second equation in (3.15) implies that
$$
\det \Psi_n(z)=C\not=0
\eqno (3.17)
$$
is independent of $z$, i.e.,
$$
\psi_n(z)\f_{n-1}(z)-\psi_{n-1}(z)\f_n(z)=C.
\eqno (3.18)
$$
This enables us to find $\f_n(z)$. Namely,
$$\eqalign{
\f_n'(z)&=Na_{11}(z)\f_n(z)+Na_{12}(z)\f_{n-1}(z),\cr
\psi_n'(z)&=Na_{11}(z)\psi_n(z)+Na_{12}(z)\psi_{n-1}(z),\cr
}
\eqno (3.19)
$$
where $\di A_n(z)=\bigl( a_{ij}(z)\bigr)_{i,j=1,2}$, hence
$$
\psi_n(z)\f'_n(z)-\f_n(z)\psi'_n(z)
=Na_{12}(z)[\psi_n(z)\f_{n-1}(z)-\psi_{n-1}(z)\f_n(z)]
=CNa_{12}(z),
$$
and
$$
\left({\f_n(z)\over \psi_n(z)}\right)'={CNa_{12}(z)\over \psi_n^2(z)}\,.
$$
This gives
$$
\f_n(z)=CN\psi_n(z)\int_{z_0}^z{a_{12}(u)\over \psi_n^2(u)}\, du,
\qquad n\ge 1.
\eqno (3.20)
$$
In a similar way we get
$$
\f_{n-1}(z)=CN\psi_{n-1}(z)\int_{z_0}^z{a_{21}(u)\over \psi_{n-1}^2(u)}\, du,
\qquad n\ge 1.
\eqno (3.21)
$$
It is useful to note that (3.18) allows to express
$\f_{n-1}(z)$ through $\f_n(z)$:
$$
\f_{n-1}(z)={\psi_{n-1}(z)\over \psi_n(z)}\,\f_n(z)+
{C\over \psi_n(z)}.
\eqno (3.22)
$$
The system of two differential equations of the first order,
$\vec\Psi_n'=NA_n\vec\Psi_n$, can be reduced to one equation of the
second order (cf. [Sho]). Namely, from the first equation of the
system we can 
express $\psi_{n-1}$ in terms of $\psi_n$,
$$
\psi_{n-1}=N^{-1}{1\over a_{12}}\,\psi_n'-{a_{11}\over
a_{12}}\,\psi_n. 
\eqno (3.23)
$$
and then we can substitute this expression into the second equation of
the system, which gives
$$
\psi_n''-{a_{12}'\over
a_{12}}\,\psi_n'+N^2(a_{11}a_{22}-a_{12}a_{21})\,\psi_n
-Na_{12}\left({a_{11}\over a_{12}}\right)'\psi_n=0.
\eqno (3.24)
$$
With the help of the substitution
$$
\psi_n=a_{12}^{1/2}\z_n
\eqno (3.25)
$$
we reduce (3.24) to the Schr\"odinger equation
$$
-\z_n''+N^2U\z_n=0,
\eqno (3.26)
$$
where
$$
U=-(a_{11}a_{22}-a_{12}a_{21})
+N^{-1}\left(a_{11}'-a_{11}\,{a_{12}'\over a_{12}}\right)
-N^{-2}\left[{a_{12}''\over 2a_{12}}-{3(a_{12}')^2\over
4a_{12}^2}\right] \,.
\eqno (3.27)
$$
By (3.8),
$$\eqalign{
-a_{11}&=a_{22}={tz\over 2}+{gz^3\over 2}+gzR_n,\cr
a_{12}&=R_n^{1/2}(\t_n+gz^2),\qquad
a_{21}=-R_n^{1/2}(\t_{n-1}+gz^2),\cr} 
\eqno (3.28)
$$
which gives
$$\eqalign{
U(z)&=\left[{g^2z^6\over 4}+{tgz^4\over 2}+\left(
{t^2\over 4}-{n\over N}g\right)z^2
-R_n\t_{n-1}\t_n\right]\cr
&-N^{-1}\left[
{t\over 2}+{3gz^2\over 2}+gR_n-{gz^2(t+gz^2+2gR_n)\over
gz^2+\t_n} \right]
+N^{-2}\left[{g(2gz^2-\t_n)\over
(gz^2+\t_n)^2}\right]\,. \cr}
\eqno (3.29)
$$
It is convenient to write $U(z)$ as
$$
U(z)=U_0(z)+U_1(z)+U_2(z),
\eqno (3.30)
$$
where
$$\eqalign{
&U_0(z)=z^2\left[\left({gz^2+t\over 2}\right)^2-\la'g\right],\qquad
\la'={n+{1\over 2}\over N}\,,\cr
&U_1(z)=N^{-1}\left({t\over 2}+gR_n\right)\,,\cr
&U_2(z)=-R_n\t_{n-1}\t_n
-N^{-1}
\left[{\t_n(t+gz^2+2gR_n)\over
gz^2+\t_n}\right]
+N^{-2}\left[{g(2gz^2-\t_n)\over
(gz^2+\t_n)^2}\right]\,.\cr} 
\eqno (3.31)
$$
To simplify some formulae below we will use the substitution
$$
\psi_n(z)=\left(z^2+{\t_n\over g}\right)^{1/2}\z_n(z),\eqno (3.32)
$$
rather than (3.25). These two substitutions differ by a constant
factor and lead to the same equation (3.26) on $\z_n(z)$.



\beginsection 4. The Stokes Phenomenon \par     

Consider the sectors 
$$
\Om_j=\left\{ z\: {\pi\over 8}+{\pi (j-1)\over 2}-\ep
<\arg z
<{3\pi\over 8}+{\pi (j-1)\over 2}+\ep\right\},\qquad j=1,2,3,4,
\eqno (4.1)
$$ 
$\ep>0$,
on a complex plane where the function
$$
\psi_n(z)={1\over \sqrt {h_n}}\, P_n(z)\, 
e^{-N\left({t\over 4}z^2+{g\over 8}z^4\right)}
\eqno (4.2)
$$
goes to infinity as $z\to\infty$.
Let us take in (3.20) $z_0\to\infty$ along the bisector of $\Om_j$,
$$
b_j=\left\{ z\: \arg z={\pi\over 4}+{\pi (j-1)\over 2}\right\},
\eqno (4.3)
$$
and consider the corresponding solution (3.20),
$$\eqalign{
\f_{nj}(z)&=CN\psi_n(z)\int_{\om_j\infty}^z{a_{12}(u)\over 
\psi_n^2(u)}\, du\cr
&=CNh_n^{1/2}P_n(z)\,
e^{-N\left({t\over 4}z^2+{g\over 8}z^4\right)}\cr
&\times\int_{\om_j\infty}^z 
{R_n^{1/2}[t+gu^2+g(R_n+R_{n+1})]\over P_n^2(u)}\,
e^{N\left({t\over 2}u^2+{g\over 4}u^4\right)}du\cr}
\eqno (4.4)
$$
where
$$
\om_j=e^{i\left( {\pi\over 4}+{\pi (j-1)\over 2}\right)},
\qquad j=1,2,3,4.
$$
The solution $\f_{nj}(z)\to 0$ as $z\to\infty$ in $\Om_j$.
Evaluating the integral in (4.4) with the help of the
Laplace method, we obtain the asymptotic  
expansion of $\f_{nj}(z)$ in $\Om_j$:
$$
\f_{nj}(z)\sim C_n z^{-n-1}e^{{NV(z)\over 2}}
\left ( 1+\sum_{k=1}^\infty
{\g_{2k}\over z^{2k}}\right),\qquad \g_{2k}=\g_{2k}(n),
\eqno (4.5)
$$
where
$$
C_{n}=-Ch_n^{1/2}R_n^{1/2}.\eqno (4.6)
$$
In the similar way we get from the equation (3.21) the asymptotic
expansion of $\f_{n-1,j}(z)$,
$$
\f_{n-1,j}(z)\sim C_{n-1} z^{-n}e^{{NV(z)\over 2}}
\left ( 1+\sum_{k=1}^\infty
{\g_{2k}\over z^{2k}}\right),
$$
where
$$
C_{n-1}=-Ch_{n-1}^{1/2}R_n^{1/2}.\eqno (4.7)
$$ 
>From (4.6), (4.7),
$$
{C_n\over C_{n-1}}=
{h_n^{1/2}\over h_{n-1}^{1/2}}
\eqno (4.8)
$$
[which is compatible with (3.16)].
The initial constant $C_0$ is a free parameter. We put $C_0=h_0^{1/2}$.
Then (4.8) gives $C_n=h_n^{1/2}$, so that
$$
\f_{nj}(z)\sim h_n^{1/2} z^{-n-1}e^{{NV(z)\over 2}}
\left ( 1+\sum_{k=1}^\infty
{\g_{2k}\over z^{2k}}\right).
\eqno (4.9)
$$
As a matter of fact,
this asymptotic expansion holds in a bigger domain,
$$
\Sg_j=\left\{ -{\pi\over 8}+{\pi (j-1)\over 2}+\ep< \arg z
< {5\pi\over 8}+{\pi (j-1)\over 2}-\ep\right\},\qquad \ep>0.
\eqno (4.10)
$$
The matrix-valued function
$$
\Psi_{nj}(z)=
\pmatrix
\psi_n(z) & \f_{nj}(z)\\
\psi_{n-1}(z) & \f_{n-1,j}(z)
\endpmatrix=\left( \vec\Psi_n(z),\vec\Phi_{nj}(z)\right)
\eqno (4.11)
$$
is an entire
function of $z$, and according to (4.2) and (4.9) it has the
asymptotic expansion
$$
\Psi_{nj}(z)\sim 
\left(\sum_{k=0}^\infty{\G_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z+\la_n\right)\sg_3},
\qquad z\to\infty,\qquad z\in \Sg_j,
\eqno (4.12)
$$ 
where 
$$
\sg_3=
\pmatrix
1 & 0 \\
0 & -1
\endpmatrix
\eqno (4.13)
$$
is the Pauli matrix,
$$
\la_n={1\over 2}\ln h_n,
\eqno (4.14)
$$
and $\G_k$ are some $2\times 2$ matrices which depend
on $n$ and $j$. From (4.2) and (4.9) we get
$$
\G_0=
\pmatrix
1 & 0 \\
0 & R_n^{-1/2}
\endpmatrix,
\qquad
\G_1=
\pmatrix
0 & 1 \\
R_n^{1/2} & 0
\endpmatrix.
\eqno (4.15)
$$

\beginsection 5. The Riemann -- Hilbert Problem \par

Since both $\vec\Phi_{nj}(z)$ for different $j$ and $\vec\Psi_n(z)$
satisfy the same differential equation (3.6), they are linearly 
dependent,
$$
\vec \Phi_{n,j+1}(z)=q\vec\Phi_{nj}(z)+s\vec\Psi_n(z),
$$
where $j$ is defined $\mod 4$.
The domains $\Sg_j$ and $\Sg_{j+1}$ intersect and in
the intersection the functions $\vec \Phi_{nj}(z)$ and
$\vec \Phi_{n,j+1}(z)$ grow to infinity and have the same 
asymptotic expansion (4.12). On the other hand
$\vec \Psi_n(z)$ goes to zero in this intersection, hence
$q=1$, so that
$$
\vec \Phi_{n,j+1}(z)=\vec\Phi_{nj}(z)+s\vec\Psi_n(z).
\eqno (5.1)
$$
Since both $\vec\Phi_{nj}(z)$ and $\vec\Psi_n(z)$ satisfy
the same recursive equation (3.6),
the coefficient $s$ does not depend on $n$, but
in general it depends on $j$, $s=s_j$. The equation (5.1) implies
that
$$
\f_{n,j+1}(z)=\f_{nj}(z)+s_j\psi_n(z).
\eqno (5.2)
$$
We can rewrite (5.1) in matrix form as
$$
\Psi_{n,j+1}(z)= \Psi_{nj}(z)\,S_j,
\eqno (5.3)
$$
where
$$
S_j=\pmatrix
1 & s_j \\
0 & 1 
\endpmatrix.
\eqno (5.4)
$$
To determine $s_j$ consider (5.2) at $n=0$. 
The formula (3.21) reads for $n=1$,
$$\eqalign{
\f_{0j}(z)&=CN\psi_0(z)\int_{\om_j\infty}^z
{a_{21}(u)\over \psi_{0}^2(u)}
\,du\cr
&=C'Ne^{-N\left({t\over 4}z^2+{g\over 8}z^4\right)}
\int_z^{\om_j\infty}
(t+gu^2+gR_1)e^{N\left({t\over 2}u^2+{g\over 4}u^4\right)}
du.\cr}
$$
>From the asymptotics (4.9) we get $C'=h_0^{1/2}$, hence
$$
\f_{0j}(z)
=h_0^{1/2}e^{-N\left({t\over 4}z^2+{g\over 8}z^4\right)}
\int_z^{\om_j\infty} N\,
(t+gu^2+gR_1)e^{N\left({t\over 2}u^2+{g\over 4}u^4\right)}
du.
\eqno (5.5)
$$
Putting $z=0$ in (5.2) we get
$$
s_j={\f_{0,j+1}(0)-\f_{0j}(0)\over \psi_0(0)}\,.
$$
Since
$$
\psi_0(0)=h_0^{-1/2}
$$
[see (4.2)] and
$$
\f_{0j}(0)=h^{1/2}_0
\int_0^{\om_j\infty} N\,
(t+gu^2+gR_1)e^{N\left({t\over 2}u^2+{g\over 4}u^4\right)}\,
du
$$
we obtain that
$$
s_j=h_0 \int_{\om_{j}\infty}^{\om_{j+1}\infty} N\,
(t+gu^2+gR_1)e^{N\left({t\over 2}u^2+{g\over 4}u^4\right)}\,
du,\qquad j=1,2,3,4.
\eqno (5.6)
$$
The change of variable $u\to -u$ gives
$$
s_3=-s_1,\qquad s_4=-s_2.
\eqno (5.7)
$$
Another way to compute $s_j$ is to use the Cauchy type integral.

The function 
$$
y_{nj}(z)=e^{-{NV(z)\over 2}}\f_{nj}(z),\qquad j=1,2,3,4,
\eqno (5.8)
$$
is an entire function of $z$ and in $\Sg_j$ it has the asymptotics
$$
y_{nj}(z)=h_n^{1/2}z^{-n-1}\left(1+\sum_{k=1}^\infty{\g_{2k}\over 
z^{2k}}\right)
\eqno (5.9)
$$
In addition,
$$
y_{n,j+1}(z)=y_{nj}(z)+s_je^{{-NV(z)\over 2}}\psi_n(z).
\eqno (5.10)
$$
Observe that the domain $\Sg_j$ contains the $j$-th quadrant,
$$
\Delta_j=
\left\{ z\: {(j-1)\pi\over 2}\le \arg z \le {j\pi \over 2}\right\},
$$
hence (5.9) holds in $\Delta_j$. This allows us to solve (5.10)
with the help of the Cauchy type integral. Namely,
$$\eqalign{
y_n(z)
&={s_4\over 2\pi i}\int_{-\infty}^\infty {e^{-{NV(u)\over 2}}
\psi_n(u)\over u-z}\, du
+{s_1\over 2\pi i}\int_{-i\infty}^{i \infty} {e^{-{NV(u)\over 2}}
\psi_n(u)\over u-z}\, du\cr
&={s_4\over 2\pi i}\int_{-\infty}^\infty {h_n^{-1/2} P_n(u)
e^{-{NV(u)}}\over u-z}\, du
+{s_1\over 2\pi i}\int_{-i\infty}^{i \infty} {h_n^{-1/2} P_n(u)
e^{-{NV(u)}}\over u-z}\, du\cr}
\eqno (5.11)
$$
where $y_n(z)$ is a piece-wise analytic function which coincides
with $y_{nj}(z)$ in the quadrant $\Delta_j$. Expanding
$$
{1\over u-z}=-{1\over z}\sum_{k=0}^\infty
{u^k\over z^k},
$$
we obtain from (5.11) the asymptotic expansion of $y_n(z)$ as $z\to\infty$,
$$
y_n(z)\sim {1\over z}\sum_{k=0}^\infty {s_4a_{nk}+s_1 b_{nk}\over
z^k},
\eqno (5.12)
$$
where
$$\eqalign{
a_{nk}&=-{1\over 2\pi i}\int_{-\infty}^\infty h_n^{-1/2} P_n(u)u^k
e^{{-NV(u)}}\, du\cr
b_{nk}&=-{1\over 2\pi i}\int_{-i \infty}^{i \infty} h_n^{-1/2} P_n(u)u^k
e^{{-NV(u)}}\, du\cr}
\eqno (5.13)
$$
Since by (5.9), $y_n(z)=O(z^{-n-1})$,
$$
s_4a_{nk}+s_1 b_{nk}=0,\qquad k=0,1,\dots, n-1,
$$
but $a_{nk}=0$ for $k=0,1,\dots,n-1$ in virtue of the orthogonality property
(1.3), hence $s_1 b_{nk}=0$ for these $k$'s. Let us take $n=2$ and $k=0$.
In this case
$$
i\int_{-i \infty}^{i \infty} P_2(u)e^{-NV(u)}\,du
=-\int_{-\infty}^{\infty} P_2(iu)e^{-NV(iu)}\,du
$$
is obviously positive hence $b_{20}\not=0$. This implies
$$
s_1=s_3=0.\eqno (5.14)
$$
By (5.2) this means that
$$
\f_{n2}(z)=\f_{n1}(z),\qquad \f_{n4}(z)=\f_{n3}(z).
$$
Let us find $s_4$. For the sake of simplicity we redenote it by $s$.
>From (5.9) we know that 
$$
y_0(z)=h_0^{1/2}(z^{-1}+\dots),
$$
hence by (5.12), $s a_{00}=h_0^{1/2}$. In addition, by (5.13), 
$$
a_{00}=-{1\over 2\pi i}\, h_0^{1/2}.
$$
This gives
$$
s=-2\pi i. 
\eqno (5.15)
$$
Now we can formulate the Riemann--Hilbert problem. Define
$$
\Psi_{n+}(z)=
\pmatrix
\psi_n(z) & \f_{n1}(z) \\
\psi_{n-1}(z) & \f_{n-1,1}(z)
\endpmatrix
$$
and
$$
\Psi_{n-}(z)=
\pmatrix
\psi_n(z) & \f_{n3}(z) \\
\psi_{n-1}(z) & \f_{n-1,3}(z)
\endpmatrix.
$$
Let
$$
\Psi_n(z)=
\left\{
\eqalign{
&\Psi_{n+}(z),\quad \text{if}\quad \text {Im}\,z\ge 0,\cr
&\Psi_{n-}(z),\quad \text{if}\quad \text {Im}\,z\le 0.\cr}
\right.
$$
Then $\Psi_n(z)$ has the asymptotic expansion
$$
\Psi_{n}(z)\sim 
\left(\sum_{k=0}^\infty{\G_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z+\la_n\right)\sg_3},
\qquad z\to\infty,
\eqno (5.16)
$$ 
where $\la_n={1\over 2}\ln h_n$
and
$$
\G_0=
\pmatrix
1 & 0 \\
0 & R_n^{-1/2}
\endpmatrix,
\qquad
\G_1=
\pmatrix
0 & 1 \\
R_n^{1/2} & 0
\endpmatrix.
\eqno (5.17)
$$
On the real line 
$$
\Psi_{n+}(z)=\Psi_{n-}(z)S,\qquad \text{Im}\,z=0,
\eqno (5.18)
$$
where
$$
S=
\pmatrix
1 & -2\pi i \\
0 & 1
\endpmatrix .
\eqno (5.19)
$$
In addition,
$$
\det \Psi_n(z)=R_n^{-1/2}.
\eqno (5.20)
$$

It must be emphasized that in the setting of the Riemann-Hilbert
problem (5.16-18) the real quantities $R_{n}$ and $\la_{n}$ {\it are
not the given data}. They are evaluated via the solution
$\Psi_{n}(z)$. Indeed, suppose that $\tilde \Psi_{n}(z)$ is another
function satisfying (5.16-18) with perhaps another $\tilde R_{n}$ and
another $\tilde \la_{n}$. Consider the matrix ratio: 
$$
X^{*}(z) = [e^{\la_{n}\sg_{3}}\G^{-1}_{0} \Psi_{n}(z)]
[e^{\tilde{\la}_{n}\sg_{3}}\tilde{\G}^{-1}_{0}\tilde
\Psi_{n}(z)]^{-1}. 
$$
Since the jump matrix $S$ for the both $\Psi_{n}(z)$ and $\tilde
\Psi_{n}(z)$ is the same, function $X^{*}(z)$ has no jump across the
real line. Therefore, it is an entire function equals $I$ at
$z=\infty$. Hence 
$$
X^{*}(z)\equiv I,
$$
or
$$
[e^{\la_{n}\sg_{3}}\G^{-1}_{0} \Psi_{n}(z)]
[e^{\tilde{\la}_{n}\sg_{3}}\tilde{\G}^{-1}_{0}\tilde \Psi_{n}(z)]^{-1}
\equiv I.
$$
Substituting into this identity asymptotic expansions (5.16) and
equating the terms of order $z^{-1}$ we come up with the matrix
equation, 
$$
e^{\la_{n}\sg_3}\G^{-1}_{0}\G_{1}e^{-\la_{n}\sg_3} =
e^{\tilde{\la}_{n}\sg_3}\tilde{\G}^{-1}_{0}
\tilde{\G}_{1}e^{-\tilde{\la}_{n}\sg_3},
$$ 
whose (12) and (21) entries imply
$$
\la_{n} = \tilde \la_{n}\qquad \text{and}\qquad R_{n}=\tilde R_{n}.
$$







\beginsection 6. Formal Asymptotic Expansion for $R_n$ \par

We expect that 
$$
\lim_{n,N\to\infty\: n/N\to \la}R_n=\left\{
\eqalign{
&R(\la)\quad\text{if}\quad n=2k+1,\cr
&L(\la)\quad\text{if}\quad n=2k.\cr}
\right.
\eqno (6.1)
$$
>From (1.7) we get the equations
$$\eqalign{
&\la=R[t+g(2L+R)],\cr
&\la=L[t+g(2R+L)].\cr
}\eqno (6.2)
$$ 
Equating the expressions on the right we obtain that
$$
(R-L)\,[t+g(R+L)]=0.
$$
We assume that $R\not=L$ hence
$$
t+g(R+L)=0.
\eqno (6.3)
$$
Combining this with (6.2) we obtain
$$
\la=gRL,
\eqno (6.4)
$$
so that $R,L$ are solutions of the quadratic equation
$$
u^2+{t\over g}\,u+{\la\over g}=0,
\eqno (6.5)
$$
which are
$$
R,L={-t\pm\sqrt{t^2-4\la g}\over 2g}
\eqno (6.6)
$$
We can find an asymptotic expansion of $R_n$ in powers of
$N^{-2}$. Put
$$
R_n=\left\{
\eqalign{
&R(n/N)\iff n=2k+1,\cr
&L(n/N)\iff n=2k.\cr}
\right.
$$
Then (1.7) is equivalent to
$$\eqalign{
\la=R(t+gR+2gL+N^{-2}g\Delta L),\cr
\la=L(t+gL+2gR+N^{-2}g\Delta R),\cr}
\eqno (6.7)
$$
where 
$$
\Delta f(\la)={f(\la-{1\over N})-2f(\la)+f(\la+{1\over N})\over
(1/N)^2}\,.
$$
Let us substitute the expansions 
$$
L(\la)=L_0(\la)+N^{-2}L_1(\la)+\dots;\qquad
R(\la)=R_0(\la)+N^{-2}R_1(\la)+\dots
$$
into (6.7) and equate coefficients at powers of $N^{-2}$. Then the
equations on $L_0(\la),R_0(\la)$ coincide with (6.2), hence 
$L_0(\la),R_0(\la)$  are given by (6.6). Equating coefficients at
$N^{-2}$ we obtain the system of equations
$$
\left\{
\eqalign{
&(R_0+L_0)R_1+2R_0L_1=-R_0\Delta L_0,\cr
&2L_0R_1+(R_0+L_0)L_1=-L_0\Delta R_0.\cr}
\right.
\eqno (6.8)
$$
Solving this system we find $R_1,L_1$ and so on. In what follows the
quantity 
$$
\t_n=t+gR_n+gR_{n+1}
$$
plays an important role. It follows from the asymptotic formula for
$R_n$ that
$$
\t_n={(-1)^{n+1}g\over N\left(t^2-{4gn\over N}\right)^{1/2}}+\ON.
\eqno (6.9)
$$


\beginsection 7. The Bohr--Sommerfeld Quantization Condition \par

To find a semiclassical formula for $\psi_n(z)$ we use the 
 Schr\"odinger equation 
$$
-\zeta_n''(z)+N^2U(z)\zeta_n(z)=0,
\eqno (7.1)
$$
where
$$
\psi_n(z)=\left(z^2+{\t_n\over g}\right)^{1/2}\z_n(z),
\eqno (7.2)
$$
(see (3.26) and (3.32)). By (3.29),
$$\eqalign{
U(z)&=\left[{g^2z^6\over 4}+{tgz^4\over 2}+\left(
{t^2\over 4}-{n\over N}g\right)z^2
-R_n\t_{n-1}\t_n\right]\cr
&-N^{-1}\left[
{t\over 2}+{3gz^2\over 2}+gR_n-{gz^2(t+gz^2+2gR_n)\over
gz^2+\t_n} \right]
+N^{-2}\left[{g(2gz^2-\t_n)\over
(gz^2+\t_n)^2}\right]\,. \cr}
\eqno (7.3)
$$
Turning points for (7.1) are to be found as real zeros of $U(z)$.  
 To simplify
calculations we make the assumption that there exists $C>0$ such that
$$
|\t_n|\le CN^{-1}.
\eqno (7.4)
$$
This assumption is motivated
by the equation (6.9) and will be justified later.
Neglecting terms of the order of $N^{-1}$ we derive from (7.3) the
following equation on positive turning points $z_2>z_1>0$:
$$
(gz^2+t)^2-4\la g=0,\qquad \la={n\over N}\,,
$$
which gives
$$
z_{1,2}=\left({{-t\mp 2\sqrt{\la g}\over g}}\right)^{1/2}+O(N^{-1})\,.
$$
The condition
$$
0<{n\over N}< \lacr ={t^2\over 4g}
$$
guarantees that the zeros $z_{1,2}$ are real.
A semiclassical solution to the Schr\"odinger equation (7.1) is
$$
\zeta_n(z)=
\left\{
\eqalign{
&{C\over
\rf {U(z)}}\exp\left[-N\int_{z_2}^z
\sqrt{U(v)}\,dv \right],
\quad \text{if}\quad z> z_2+\ep,\cr
&{2C\over
\rf {-U(z)}}\cos\left[N\int_{z_2}^z\sqrt {-U(v)}\,dv+
{\pi\over 4} \right],
\quad \text{if}\quad z_1+\ep<z<z_2-\ep,\cr}
\right.
\eqno (7.5)
$$
The orthogonal polynomial $P_n(z)$ is either an even function or an
odd one, and it has $n$ 
real zeros. If $n=2k$ or $2k+1$, then $k$ of these zeros are positive,
$k$ negative and one zero is equal to 0 if $n$ is odd. 
The Bohr--Sommerfeld
quantization rule is then
$$
N\int_{z_1}^{z_2}\sqrt {-U(z)}\,dz=\pi\left( k+{1\over 2}\right),
\qquad k=\left[{n\over 2}\right]\,.
\eqno (7.6)
$$
This rule comes from the fact that the function $\psi_n(z)$ has $k$
zeros on the interval $[z_1,z_2]$ and it decays in a neighborhood of the
points $z_1,z_2$ outside of this interval.  To evaluate the integral
on the left in (7.6) we rewrite $U(z)$ as
$$
U(z)=U_0(z)+U_1+U_2(z),
$$
where
$$\eqalign{
U_0(z)&={g^2z^6\over 4}+{tgz^4\over 2}+\left(
{t^2\over 4}-\la'g\right)z^2,\qquad \la'={n+{1\over 2}\over N}\,,\cr
U_1&=N^{-1}\left({t\over 2}+gR_n\right)\cr}
\eqno (7.7)
$$
and 
$$
U_2(z)=-R_n\t_{n-1}\t_n-N^{-1}
\left[{\t_n(t+gz^2+2gR_n)\over
gz^2+\t_n}\right]
+N^{-2}\left[{g(2gz^2-\t_n)\over
(gz^2+\t_n)^2}\right]\,. 
\eqno (7.8)
$$
Our assumption (7.4) shows that $U_2(z)$ is of the order of $N^{-2}$,
and we will neglect this term in the calculation of the integral on
the left in (7.6). The term $U_1$ is of the order of $N^{-1}$ and we
will consider it as a small perturbation of $U_0(z)$. 
Let $\g$ be a contour in a complex plane enclosing the interval
$[z_1,z_2]$. Then
$$
\int_{z_1}^{z_2}\sqrt {-U(z)}\,dz={1\over 2}\,\oint_\g
\sqrt {-U(z)}\,dz=
{1\over 2}\,\oint_\g
\sqrt {-U_0(z)}\,dz-{1\over 4}\,\oint_\g
{U_1\over\sqrt {-U(z)}}\,dz+O(N^{-2}).
$$
Let $z_{10}$ and $z_{20}$ be zeros of $U_0(z)$. Then
$$\eqalign{
{1\over 2}\,\oint_\g
\sqrt {-U_0(z)}\,dz&=
\int_{z_{10}}^{z_{20}}\sqrt{-U_0(z)}\,dz
=\int_{z_{10}}^{z_{20}}(z/2)\sqrt {4\la' g -(gz^2+t)^2}\,dz \cr
&={\la'\over 2}\left( x\sqrt{1-x^2}+\arcsin x
\right) \biggr|_{-1}^1, \qquad x={t+gz^2\over 2(\la'g)^{1/2}}\,,\cr}
\eqno (7.9)
$$
which gives
$$
{1\over 2}\,\oint_\g
\sqrt {-U_0(z)}\,dz
={\pi\la'\over 2}.
\eqno (7.10)
$$
Similarly,
$$\eqalign{
{1\over 2}\,\oint_\g
{dz\over\sqrt {-U_0(z)}}&=
\int_{z_{10}}^{z_{20}}{dz\over \sqrt{-U_0(z)}}
=\int_{z_{10}}^{z_{20}}{2dz\over z\sqrt {4\la' g -(gz^2+t)^2}}\,dz \cr
&={1\over \sqrt{t^2-4\la' g}}\arcsin\left({2\sqrt {\la'g}
-tx\over 2\sqrt {\la'g}\,x-t}\right)\Biggr|_{-1}^1
={\pi \over \sqrt{t^2-4\la' g}},\cr}
\eqno (7.11)
$$
>From (7.10) and (7.11) we obtain that modulo terms of the order of
$N^{-1}$, 
$$
N\int_{z_1}^{z_2}\sqrt {-U(z)}\,dz
={\pi\left(n+{1\over 2}\right)\over 2}-{
\left({t\over 2}+gR_n\right)\pi\over 2\sqrt{t^2-4\la'
g}}
\eqno (7.12)
$$
and hence by (7.5)
$$
\pi\left( k+{1\over 2}\right)
={\pi\left(n+{1\over 2}\right)\over 2}-{\left({t\over
2}+gR_n\right) 
\pi\over 2\sqrt{t^2-4\la'
g}}
\eqno (7.13)
$$
This gives 
$$
R_n={-t-(-1)^n\sqrt{t^2-4\la'g}\over 2g}+O(N^{-1}),
\eqno (7.14)
$$
or replacing $\la'$ for $\la$,
$$
R_n={-t-(-1)^n\sqrt{t^2-4\la g}\over 2g}+O(N^{-1}),\qquad \la={n\over N}.
\eqno (7.15)
$$
The error term in this formula is uniform in $\la$ in
the interval $0\le\la\le\lacr-\ep$.

Let us calculate the semiclassical formula for $\psi_n(z)$.
Assume first that $z>z_2+\ep,\;\ep>0$. Then modulo terms of the order
of $N^{-1}$,  
$$
\zeta_n(z)={C\over \root 4 \of {U_0(z)}}\exp\left
\{-N\int_{z_{20}}^z\left[\sqrt {U_0(v)} +{U_1\over
2\sqrt{U_0(v)}}\right]  dv\right\}.
\eqno (7.16)
$$
Observe that
$$\eqalign{
\int_{z_{20}}^z\sqrt{ U_0(v)}\,dv
&=\int_{z_{20}}^z {v\over 2}\,\sqrt{(gv^2+t)^2-4\la' g}\, dv
=\int_1^x\la'\sqrt{u^2-1}\,du\cr
&={\la'\over 2}
\left[x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right)\right],
\qquad x={gz^2+t\over 2\sqrt{\la' g}}\,.\cr}
\eqno (7.17)
$$
and
$$\eqalign{
\int_{z_{20}}^z{dv\over \sqrt{ U_0(v)}}
&=\int_{z_{20}}^z {2vdv\over v^2\sqrt{(gv^2+t)^2-4\la' g}}
=\int_1^x {du\over (2\sqrt{\la' g}\,u-t)
\sqrt{u^2-1}}\cr
&={\ln(y+\sqrt{y^2-1})\over \sqrt{t^2-4\la'g}}\,,
\qquad y={2\sqrt{\la' g}-tx\over 2\sqrt{\la'g}\, x-t}
\,.\cr}
$$
In addition, by (7.14),
$$
{U_1\over 2\sqrt {t^2-4\la' g}}=
{N^{-1}\left({t\over 2}+gR_n\right)\over 2\sqrt {t^2-4\la' g}}=
-{N^{-1}(-1)^n\over 4}\,.
$$
This gives
$$\eqalign{
\int_{z_2}^z\sqrt{U(v)}\,dv&=
{\la'\over 2}
\left[x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right)\right]\cr
&-{N^{-1}
(-1)^n\over 4}\ln\left(y+\sqrt {y^2-1}\right)+
O(N^{-1}|z|^{-2}),\qquad z>z_2+\ep.\cr}
\eqno (7.18)
$$
In addition,
$$
\root 4 \of {U_0(z)}=\sqrt {z/2}\root 4 \of {(gz^2+t)^2-4\la' g}
=\root 4 \of {\la' g}\,\sqrt z\,\root 4 \of {x^2-1},
$$
hence
$$\eqalign{
\zeta_n(z)&=
{C_n\over \sqrt {z} \root 4 \of
{(x^2-1)}}\,\exp\biggl\{ -
{\left(n+{1\over 2}\right)\over 2}\left[
x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right) 
\right]\cr
&+{(-1)^n\over 4}\ln\left(y+\sqrt {y^2-1}\right)+
O(N^{-1}|z|^{-2})\biggr\}.\cr}
\eqno (7.19) 
$$
where
$$
 x={gz^2+t\over 2\sqrt{\la' g}}\,,
\qquad y={2\sqrt{\la' g}-tx\over 2\sqrt{\la'g}\, x-t}
={-tgz^2-t^2+4\la'g\over  2\sqrt{\la'g}\, gz^2}\,,
\qquad \la'={n+{1\over 2}\over N}\,.
\eqno (7.20)
$$
In virtue of (7.4), the substitution (7.2) gives
$$
\psi_n(z)=z\zeta_n(z)\,[1+O(N^{-1}|z|^{-2})],
\eqno (7.21)
$$
hence
$$\eqalign{
\psi_n(z)&=
{C_n\sqrt {z}\over \root 4 \of
{x^2-1}}\,\exp\biggl\{ -
{\left(n+{1\over 2}\right)\over 2}\left[
x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right) 
\right]\cr
&+{(-1)^n\over 4}\ln\left(y+\sqrt {y^2-1}\right)+
O(N^{-1}|z|^{-2})\biggr\}.\cr}
\eqno (7.22) 
$$
In the interval $z_1+\ep<z<z_2-\ep,\;\ep>0,$ the semiclassical
solution is 
$$
\psi_n(z)=
{2C_n\sqrt {z}\over \sqrt
{\sin \phi}}
\,\cos\left\{
{\left(n+{1\over 2}\right)\over 2}\left[ {\sin(2\phi)\over
2}-\phi\right]+{\pi-(-1)^n\chi\over 4} 
+O(N^{-1})\right\},
\eqno (7.23) 
$$
where
$$
\phi=\arccos x,\qquad \chi=\arccos y,
$$
and $x,y$ are defined in (7.20). The error term $O(N^{-1})$ in (7.22)
and (7.23) is uniform in $n$ assuming that for some $\ep>0$, 
$$
|z-z_1|,\;|z-z_2|\ge \ep.
$$
The formula (7.22) can be written also in the form
$$
\psi_n(z)=
{C_n\sqrt {z}\over \sqrt
{\sinh \phi}}
\,\exp\left\{-
{\left(n+{1\over 2}\right)\over 2}\left[ {\sinh(2\phi)\over
2}-\phi\right]+{(-1)^n\chi\over 4} 
+O(N^{-1})\right\},
\eqno (7.24) 
$$
where
$$
\phi=\cosh^{-1} x,\qquad \chi=\cosh^{-1} y.
$$
In this form the formulae (7.23) and (7.24) are similar to the
classical Plancherel--Rotach formulae for the Hermite polynomials
(see [PR] and [Sz]).

In the interval $0\le z\le z_1-\ep$ the semiclassical solution is
$$\eqalign{
\psi_n(z)&=
{C_n\sqrt {z}\over \root 4 \of
{(x^2-1)}}\,\exp\biggl\{ -
{\left(n+{1\over 2}\right)\over 2}\left[
|x|\sqrt{x^2-1}-\ln\left(|x|+\sqrt{x^2-1}\right) 
\right]\cr
&+{(-1)^n\over 4}\ln\left(|y|+\sqrt {y^2-1}\right)+
O(N^{-1})\biggr\},\cr}
\eqno (7.25) 
$$
where $x$ and $y$ are defined in (7.20). This formula coincides with
(7.22) when $z>z_2$, so it can be used both when $0\le z\le z_1-\ep$
and $z>z_2+\ep$. It can be rewritten in the form (7.24) as well, with 
$$
\phi=\cosh^{-1} |x|,\qquad \chi=\cosh^{-1} |y|.
\eqno (7.26)
$$  
A formula combining (7.23) with (7.24) can be
obtained with the help of the Airy function (see next section).

%Let us compute the asymptotics of $\psi_n(z)$ as $z\to\infty$, using
%the formula (7.22).
%As $z\to\infty$,
%$$\eqalign{
%\root 4 \of {x^2-1}&=z\sqrt{{g\over 4\la}}\,(1+O(|z|^{-2})),\cr
%x\sqrt{x^2-1}&= x^2-{1\over 2}+\dots= {(gz^2+t)^2\over 4\la' g}
%-{1\over 2}+O(|z|^{-2}),\cr
%\ln\left(x+\sqrt{x^2-1}\right)&=
%\ln (2x)+O(|z|^{-2})=2\ln z+{1\over 2}\,\ln {g\over \la'}
%+O(|z|^{-2}),\cr
%\ln\left(y+\sqrt {y^2-1}\right)&=
%\ln\left({-t+\sqrt{t^2-4\la'g}\over 2\sqrt {\la' g}}\right)+O(|z|^{-2}),\cr}
%\eqno (7.27)
%$$
%hence 
%$$\eqalign{
%-{\left(n+{1\over 2}\right)\over 2}\,x\sqrt{x^2-1}&=-{N(gz^2+t)^2\over
%8g}+{N\la'\over 4}+O(N|z|^{-2})\cr
%&=-{NV(z)\over 2}-{Nt^2\over 8g}+{N\la'\over
%4}+O(N|z|^{-2}),\cr 
%{\left(n+{1\over 2}\right)\over 2}\ln\left(x+\sqrt{x^2-1}\right)
%&= \left(n+{1\over 2}\right)\ln z+{N\la'\over
%4}\ln{g\over\la'}+O(N|z|^{-2}), \cr}
%\eqno (7.28)
%$$
%and (7.22) gives the asymptotics
%$$
%\psi_n(z)=C_n\sqrt{{4\la\over g}}\,
%\exp\left[-{NV(z)\over 2}+n\ln z+\g_n+O(N|z|^{-2})\right]\,,
%\qquad z\to+\infty,
%\eqno (7.29)
%$$
%where
%$$
%\g_n=-{Nt^2\over 8g}+{N\la'\over 4}\left(1+\ln{g\over
%\la'}\right)+{(-1)^n\over 4}\, 
%\ln\left({-t+\sqrt{t^2-4\la'g}\over 2\sqrt {\la' g}}\right)
%\,.
%\eqno (7.30)
%$$
%By (3.1), 
%$$
%\psi_n(z)=h_n^{-1/2}\exp\left[-{NV(z)\over 2}+n\ln z+O(|z|^{-2})\right].
%$$
%Comparing this with (7.29), we get that
%$$
%C_n=h_n^{-1/2}\sqrt{{g\over 4\la}}\,\exp(-\g_n),
%\eqno (7.31)
%$$
%and (7.30) combined with (7.15)  imply that
%$$
%\exp(-\g_n)= \sqrt {R_n}\, \exp\left[{Nt^2\over
%8g}-{N\la\over 4}\left(1+\ln{g\over 
%\la}\right)+O(N^{-1})\right]\,,\qquad \la={n\over N}\,.
%\eqno (7.32)
%$$
 


\beginsection 8. Semiclassical Approximation Near
Turning Point \par

To construct a semiclassical approximate solution to the Schr\"odinger
equation (7.1) near the turning point $z_2$, we are looking for the
solution in the form (cf. [Ble])
$$
\zeta_n(z)={C\over
\sqrt{\phi'(z)}}\Ai\left(N^{2/3}\phi(z)\right). 
\eqno (8.1)
$$
where $\Ai(z)$ is the Airy function which satisfies the model equation 
$\Ai''(z)-z\Ai(z)=0$. 
Then (7.1) reduces to the equation
$$
(\phi')^2\phi=U+{1\over N^2}\left({\phi'''\over 2\phi'}-{3\phi''\over
4(\phi')^2} \right).
$$
Now we solve this equation iteratively. In the zeroth order 
we get 
$$
\phi(z)=\left[{3\over
2}\int_{z_2}^z\sqrt{U(v)}dv\right]^{2/3}.
$$
The last formula
defines a function $\phi(z)$  analytic at $z=z_2$ with
$$
\phi'(z_2)=[U'(z_2)]^{1/3}>0.
\eqno (8.2)
$$  
The Airy function  can be written as
$$
\Ai(-z)={1\over\sqrt{\pi\xi'(z)}}\,\cos\left[\xi(z)-{\pi\over
4}\right], 
\qquad z\ge 0,
\eqno (8.3)
$$
and
$$
\Ai(z)={1\over 2\sqrt{\pi\eta'(z)}}\,\exp[-\eta(z)],
\qquad z\ge 0,
\eqno (8.4)
$$
where $\xi(z)$ and $\eta(z)$ are analytic functions with the
asymptotics 
$$\eqalign{
\xi(z)&\sim{2\over 3}\,z^{3/2}\left(1+{5\over 32}\,z^{-3}+\dots\right)
={2\over 3}\,z^{3/2}\left(1+\sum_{j=1}^\infty\a_jz^{-3j}\right),\cr
\eta(z)&\sim{2\over 3}\,z^{3/2}\left(1-{5\over 32}\,z^{-3}+\dots\right)
={2\over 3}\,z^{3/2}\left(1+\sum_{j=1}^\infty (-1)^j\a_jz^{-3j}\right),
\qquad z\to\infty.\cr}
\eqno (8.5)
$$
%The form (8.1) is associated with the method of comparison equation (see,
%e.g., [Be]). 
%The Airy equation is a comparison one for the Schroedinger equation
%(7.2) near the turning points $z_1,z_2$. The function $\f_{i}(z)$ in
%(8.2) 
%is an analytic function in a neighborhood of the turning point
%$z_{i},\; i=1,2$. 
Combining (8.1) with (8.4) we obtain that
$$\eqalign{
\z_n(z)&={C\over 2\sqrt{\pi
\eta'(N^{2/3}\phi(z))\phi'(z)}}\,
\exp\left[-\eta(N^{2/3}\phi(z))\right] \cr
&={C N^{-1/6}\over 2\sqrt {\pi \Phi'(z)}}\exp[-N\Phi(z)],\cr}
\eqno (8.6)
$$
where
$$
\Phi(z)=N^{-1}\eta(N^{2/3}\phi(z)).
\eqno (8.7)
$$
Assume that $z\ge z_2+\ep>0$. Then from (8.5),
$$
\Phi(z)
={2\over 3}\,\phi(z)^{3/2}+O(N^{-2})
=\int_{z_2}^z\sqrt {U(v)}\,dv+O(N^{-2}).
\eqno (8.8)
$$
Hence
$$
\z_n(z)= {CN^{-1/6}\over 2\sqrt{\pi\sqrt{U(z)}}}
\exp\left[-N \int_{z_2}^z\sqrt {U(v)}\,dv+O(N^{-1})\right]\,.
\eqno (8.9)
$$
(cf. (7.3)). Combining this formula with (7.19) we obtain an
asymptotics of $\z_n(z)$ as $z\to\infty$:
$$\eqalign{
\zeta_n(z)&= {CN^{-1/6}(1+\de_n)\over 2\sqrt{\pi\sqrt{U(z)}}} 
\exp\biggl\{ -
{\left(n+{1\over 2}\right)\over 2}\left[
x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right) 
\right]\cr
&+{(-1)^n\over 4}\ln\left(y+\sqrt {y^2-1}\right)+
O(N^{-1}|z|^{-2})\biggr\},\cr}
\eqno (8.10)
$$
with some $\de_n=O(N^{-2})$, which does not depend on $z$, and 
$$
 x={gz^2+t\over 2\sqrt{\la' g}}\,,
\qquad y={2\sqrt{\la' g}-tx\over 2\sqrt{\la'g}\, x-t}\,,
\qquad \la'={n+{1\over 2}\over N}
$$
(cf. (7.18)), hence by (7.21),
$$\eqalign{
\psi_n(z)&= {CN^{-1/6}(1+\de_n)z\over 2\sqrt{\pi\sqrt{U(z)}}} 
\exp\biggl\{ -
{\left(n+{1\over 2}\right)\over 2}\left[
x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right) 
\right]\cr
&+{(-1)^n\over 4}\ln\left(y+\sqrt {y^2-1}\right)+
O(N^{-1}|z|^{-2})\biggr\}\,.\cr}
\eqno (8.11)
$$
As $z\to\infty$,
$$\eqalign{
U(z)&={g^2z^6\over 4}\,(1+O(|z|^{-2})),\cr
x\sqrt{x^2-1}&= x^2-{1\over 2}+\dots= {(gz^2+t)^2\over 4\la' g}
-{1\over 2}+O(|z|^{-2}),\cr
\ln\left(x+\sqrt{x^2-1}\right)&=
\ln (2x)+O(|z|^{-2})=2\ln z+{1\over 2}\,\ln {g\over \la'}
+O(|z|^{-2}),\cr
\ln\left(y+\sqrt {y^2-1}\right)&=
\ln\left({-t+\sqrt{t^2-4\la'g}\over 2\sqrt {\la' g}}\right)+O(|z|^{-2}),\cr}
\eqno (8.12)
$$
hence 
$$\eqalign{
-{\left(n+{1\over 2}\right)\over 2}\,x\sqrt{x^2-1}&=-{N(gz^2+t)^2\over
8g}+{N\la'\over 4}+O(N|z|^{-2})\cr
&=-{NV(z)\over 2}-{Nt^2\over 8g}+{N\la'\over
4}+O(N|z|^{-2}),\cr 
{\left(n+{1\over 2}\right)\over 2}\ln\left(x+\sqrt{x^2-1}\right)
&= \left(n+{1\over 2}\right)\ln z+{N\la'\over
4}\ln{g\over\la'}+O(N|z|^{-2}), \cr}
\eqno (8.13)
$$
and (8.11) gives the asymptotics
$$
\psi_n(z)={CN^{-1/6}(1+\de_n)\over \sqrt{2\pi g}}
\exp\left[-{NV(z)\over 2}+n\ln z+\g_n+O(N|z|^{-2})\right]\,,
\qquad z\to+\infty,
\eqno (8.14)
$$
where
$$
\g_n=-{Nt^2\over 8g}+{N\la'\over 4}\left(1+\ln{g\over
\la'}\right)+{(-1)^n\over 4}\, 
\ln\left({-t+\sqrt{t^2-4\la'g}\over 2\sqrt {\la' g}}\right)
\,.
\eqno (8.15)
$$
By (3.1), 
$$
\psi_n(z)=h_n^{-1/2}\exp\left[-{NV(z)\over 2}+n\ln z+O(|z|^{-2})\right].
$$
Comparing this with (8.13) we get
$$
C=h_n^{-1/2}\sqrt{2\pi g} N^{1/6}(1+\de_n)^{-1}\exp(-\g_n).
\eqno (8.16)
$$
By (8.1) and (8.2),
$$
\psi_n(z_2)={C (z_2^2+\t_{n-1})^{1/2}\over|U'(z_2)|^{1/6}}\Ai(0)\,,
\eqno (8.17)
$$
hence
$$
\psi_n(z_2)=h_n^{-1/2}\sqrt{2\pi g} N^{1/6}(1+\de_n)^{-1}
\exp(-\g_n)\,
{ (z_2^2+\t_{n-1})^{1/2}\over|U'(z_2)|^{1/6}}\Ai(0)\,.
\eqno (8.18)
$$
Our next step is to get a similar connection formula for $\f_n(z)$.

\beginsection 9. Connection Formula Between Turning Point and
Infinity \par

To compute the connection formula for $\f_n(z)$ we construct a
semiclassical approximation of this function near $z_2$. 
Let
$$
\alpha=e^{2\pi i/3}. \eqno (9.1)
$$
Consider the following semiclassical approximate solution
to (7.1):
$$
\zeta_n(z)={C'\over
\sqrt{\phi'(z)}}\Ai\left(N^{2/3}\a^{-1}\phi(z)\right), 
\eqno (9.2)
$$
where 
$$
\phi(z)=\left[{3\over
2}\int_{z_{2}}^z\sqrt{U(v)}dv\right]^{2/3}.
\eqno (9.3)
$$ 
Let $L_1$ be a curve starting at $z_2$, such that
$$
L_1=\{z\: \a^{-1}\phi(z)\ge 0\}.
\eqno (9.4)
$$
Since $\phi(z)$ is analytic at $z_2$ and  $\phi'(z_2)>0$ [see (8.2)],
the tangent 
line to $L_1$ at $z_2$ forms an angle $2\pi/3$ with the positive
half-axis. By (8.4) on $L_1$,
$$\eqalign{
\z_n(z)&={C'\over 2\sqrt{\pi
\eta'(N^{2/3}\a^{-1}\phi(z))\phi'(z)}}
\exp[-\eta(N^{2/3}\a^{-1}\phi(z))] \cr
&={C' N^{-1/6}\over 2\sqrt {\pi \a\Phi'(z)}}\exp[-N\Phi(z)],\cr}
\eqno (9.5)
$$
where
$$
\Phi(z)=N^{-1}\eta(N^{2/3}\a^{-1}\phi(z)).
\eqno (9.6)
$$
Applying the asymptotics  (8.5) of $\eta(z)$, we get that on $S_1$,
$$
\Phi(z)
=-{2\over 3}\,\phi(z)^{3/2}+O(N^{-2})
=-\int_{z_2}^z\sqrt {U(v)}\,dv+O(N^{-2}).
\eqno (9.7)
$$
Hence
$$\eqalign{
\z_n(z)
&= {C'N^{-1/6}\over 2\sqrt{\pi(-\a)\sqrt{U(z)}}}
\exp\left[N \int_{z_2}^z\sqrt {U(v)}\,dv+O(N^{-2})\right]\cr
&= {C'N^{-1/6}e^{\pi i/6}\over 2\sqrt{\pi\sqrt{U(z)}}}
\exp\left[N \int_{z_2}^z\sqrt {U(v)}\,dv+O(N^{-2})\right]\cr.}
\eqno (9.8)
$$
[cf. (7.3)]. Combining this formula with (7.19) we obtain an
asymptotics of $\z_n(z)$ on $S_1$:
$$\eqalign{
\zeta_n(z)&= {C'N^{-1/6}e^{\pi i/6}(1+\de'_n)\over
2\sqrt{\pi\sqrt{U(z)}}} \exp\biggl\{
{\left(n+{1\over 2}\right)\over 2}\left[
x\sqrt{x^2-1}-\ln\left(x+\sqrt{x^2-1}\right) 
\right]\cr
&-{(-1)^n\over 4}\ln\left(y+\sqrt {y^2-1}\right)+
O(N^{-1}|z|^{-2})\biggr\}.\cr}
\eqno (9.9)
$$
At infinity $L_1$ is approaching the ray $\arg z=\pi/4$. From (9.9)
and (8.12) it follows that
$$\eqalign{
\f_n(z)&={C'N^{-1/6}e^{\pi i/6}(1+\de'_n)\over \sqrt{2\pi g}}
\exp\left[{NV(z)\over 2}-(n+1)\ln z-\g_n+O(N|z|^{-2})\right]\,,\cr
& z\to\infty,\qquad z\in L_1,\cr}
\eqno (9.10)
$$
By (4.9),
$$
\f_n(z)=h_n^{1/2}
\exp\left[{NV(z)\over 2}-(n+1)\ln z+O(|z|^{-2})\right].
$$
Comparing this with (9.10) we get
$$
C'=h_n^{1/2}\sqrt{2\pi g} N^{1/6}e^{-\pi i/6}(1+\de_n')^{-1}\exp(\g_n). 
\eqno (9.11)
$$
By (9.2),
$$
\f_n(z_2)={C' (z_2^2+\t_{n-1})^{1/2}\over|U'(z_2)|^{1/6}}\Ai(0)\,,
\eqno (9.12)
$$
hence
$$
\f_n(z_2)=h_n^{1/2}\sqrt{2\pi g} N^{1/6}e^{-\pi i/6}(1+\de_n')^{-1}
\exp(\g_n)
{ (z_2^2+\t_{n-1})^{1/2}\over|U'(z_2)|^{1/6}}\Ai(0)\,.
\eqno (9.13)
$$
Let us compare this expression with (8.18). By the equation (5.18) of
the Riemann--Hilbert problem,
$$
\f_n(z)-\overline{\f_n(z)}=-2\pi i\,\psi_n(z),\qquad \text{Im}\,z=0,
\eqno (9.14)
$$
hence taking $z=z_2$ we derive from (8.18) and (9.13) the following
equation on $h_n$:
$$
h_n=2\pi\,\exp\left[-2\g_n+O(N^{-1})\right].
\eqno (9.15)
$$
Substituting the value (8.15) of $\g_n$ we get
$$  
h_n=2\pi\,\exp\left[ {Nt^2\over
4g}-{N\la'\over 2}\left(1+\ln{g\over \la'}\right)-{(-1)^n\over 2}\,
\ln\left({-t+\sqrt{t^2-4\la'g}\over 2\sqrt {\la' g}}\right)
+O(N^{-1})\right].
\eqno (9.16)
$$
Since
$$
{d\over d\la}\left[\la\left(1+\ln{g\over
\la}\right)\right]=\ln{g\over\la},
$$
we get that
$$
{N\la'\over 2}\left(1+\ln{g\over \la'}\right)=
{N\la\over 2}\left(1+\ln{g\over \la}\right)+{1\over 4}\,\ln{g\over
\la}+O(N^{-1}).
$$
If $n$ is odd, then
$$
-{1\over 2}\,\ln{g\over \la} +
\ln\left({-t+\sqrt{t^2-4\la g}\over 2\sqrt {\la g}}\right)
=\ln\left({-t+\sqrt{t^2-4\la g}\over 2g}\right)=R_n.
$$
If $n$ is even, then
$$\eqalign{
-{1\over 2}\,\ln{g\over \la} -
\ln\left({-t+\sqrt{t^2-4\la g}\over 2\sqrt {\la g}}\right)
&=-\ln\left({-t+\sqrt{t^2-4\la g}\over 2\la}\right)\cr
&=\ln\left({-t-\sqrt{t^2-4\la g}\over 2g}\right)=R_n.\cr}
$$
In both cases this implies that
$$
h_n=2\pi\sqrt{R_n}\exp\left[{Nt^2\over 4g}-{N\la\over
2}\left(1+\ln{g\over \la}\right) +O(N^{-1})\right].
\eqno (9.17)
$$
>From (8.16) and (9.15) we obtain that
$$
C=N^{1/6}\sqrt g(1+O(N^{-1})),
\eqno (9.18)
$$
hence by (8.1),
$$
\psi_n(z)={D_nz\over \sqrt{\f_N(z)}}\,
\Ai\bigl(N^{2/3}\f_N(z)+O(N^{-1})\bigr),
$$
where
$$
D_n=N^{1/6}\sqrt g\,(1+O(N^{-1}))
$$
and $\f_N(z)$ is defined in (1.19). By (8.11) and (9.18),
$$\eqalign{
\psi_n(z)={C_n\sqrt z\over\sqrt{x^2-1}}\,
\exp&\left\{ -{n+{1\over 2}\over 2}\,\left[
x\sqrt{x^2-1}-\ln(x+\sqrt{x^2-1})\right ]\right.\cr
&+\left.{(-1)^n\over
4}\,\ln(y+\sqrt{y^2-1})+O(N^{-1}(1+|z|)^{-2})\right\},\cr} 
$$
where
$$
C_n={1\over 2\sqrt\pi}\,\left({g\over\la}\right)^{1/4}(1+O(N^{-1})).
$$
This gives (1.17) and (1.21).





\vskip .2in


 
{\bf 10. Proof of the Main Theorem: Asymptotic
Riemann--Hilbert Problem}\par

We start this part of the paper with the sketch (following [FIK2,4])
of the general monodromy theory for $2\times 2$ 
matrix equation
$$
\Psi'(z) = NA(z)\Psi(z)
\eqno (10.1)
$$
with matrix $A(z)$ of the form (cf. (3.8))
$$
A(z)=
\pmatrix
-({tz\over 2}+{gz^3\over 2}+gzR_n)
& R_n^{1/2}(gz^2+\theta_n)\\
-R_n^{1/2}(gz^2+\theta_{n-1})
& {tz\over 2}+{gz^3\over 2}+gzR_n
\endpmatrix\,,\qquad \t_n=t+gR_n+gR_{n+1}.
\eqno (10.2)
$$
Quantities $R_{n-1},\; R_n$, and $R_{n+1} $ are
{\it{not}} supposed to be necessarily related to any system of
orthogonal 
polynomials. Now they are arbitrary real numbers satisfying
only one condition, the Freud equation
$$
{n\over{N}} = R_{n}(t+gR_{n-1}+ g R_{n}+gR_{n+1})\, ,
\eqno (10.3)
$$
where the integers $ n, N $ are fixed.



\beginsection
10.1. Direct Monodromy Problem
\par

For the basic definitions and concepts related to 
the general monodromy theory of systems of ordinary differential
equations with 
rational coefficients we refer the reader to the monograph [Sib] (see
also [JMU]).
% At the same time, 
%as above we shall try to avoid, when possible,  nontrivial references
%to the general theory. 
%\vskip .2in
%
Observe that $A(z)$ is a cubic polynomial in $z$ and this implies the
existence of some special solutions to (10.1). Namely, given equation
(10.1) and an {\it{arbitrary}} real number 
$\la_{n}$, there exist eight canonical matrix solutions
$\Psi_{j}(z),\; j=1,2,...,8,$ to (10.1), which are uniquely determined
by the following asymptotic expansion at $ z=\infty$ :
$$
\Psi_{j}(z)\sim
\left(\sum_{k=0}^\infty{\G_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z + \la_{n} \right)\sg_3},\qquad
\eqno (10.4)
$$
$$
 z\to\infty,\qquad \left|\,\arg z
-\left(-{\pi\over 8}+{\pi (j-1)\over 4}\right)\,\right|
<{\pi\over 4}-\ep,\qquad \ep>0,
\eqno (10.5)
$$
where as before
$$
\sg_3=
\pmatrix
1 & 0 \\
0 & -1
\endpmatrix,\qquad
V(z) = {tz^{2}\over{2}} + {gz^{4}\over{4}},
$$
and
$$
\G_0=
\pmatrix
1 & 0 \\
0 & R_n^{-1/2}
\endpmatrix.
$$

The pronounced statement follows from the general theory. Nevertheless, 
let us comment on $\Psi_j(z)$. To that end consider 
the vector equation
$$
\vec\Psi'(z)=NA(z)\vec\Psi(z).
$$
The claim is that, for a given $\la_n$ and for a given $j=1,2,3,4$,
this equation has a unique solution $\vec\Psi_j(z)$ which goes to zero as
$z\to\infty$ along the ray $\arg z=\pi(j-1)/2$ and has the following
asymptotics at $z=\infty$:
$$
\vec\Psi_{j}(z)\sim
\left(\sum_{k=0}^\infty{\vec\G_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z + \la_{n} \right)},
$$
$$
 z\to\infty,\qquad \left|\,\arg z
-{\pi (j-1)\over 2}\,\right|
<{3\pi\over 8}-\ep,\qquad \ep>0,
$$
with
$$
\vec\G_0=\pmatrix
1 \\
0
\endpmatrix.
$$
In addition, there is another unique solution $\vec\Phi_j(z)$ which
goes to zero as 
$z\to\infty$ along the ray $\arg z=(-\pi/4)+(\pi(j-1)/2)$ and 
which has the following asymptotics at $z=\infty$:
$$
\vec\Phi_{j}(z)\sim
\left(\sum_{k=0}^\infty{\vec\Theta_{k}\over z^k}\right)
\,e^{{NV(z)\over 2}-n\ln z + \la_{n}},
$$
$$
 z\to\infty,\qquad \left|\,\arg z
+{\pi\over 4}-{\pi (j-1)\over 2}\,\right|
<{3\pi\over 8}-\ep,\qquad \ep>0,
$$
with
$$
\vec\Theta_0=\pmatrix
0 \\
R_n^{-1/2}
\endpmatrix.
$$  
To get a matrix canonical solution we combine the vector solutions as
follows: 
$$
\Psi_{2j-1}(z)=\left(\vec\Psi_j(z),\vec\Phi_j(z)\right),\qquad 
\Psi_{2j}(z)=\left(\vec\Psi_j(z),\vec\Phi_{j+1}(z)\right),\qquad
j=1,2,3,4,
$$
and this produces the matrix solutions $\Psi_j(z)$ satisfying (10.4).
We will discuss semiclassical asymptotics for $\Psi_j(z)$ as $N\to
\infty$ in the section 10.4. It is worth mentioning that the existence
of the canonical solutions $\Psi_j(z)$ follows from a semiclassical
analysis of the equation (10.1) as $z\to\infty$. This analysis does
not require the Freud equation (10.3). However, the advantage of (10.3)
is that in this case the number
$$
n=NR_{n}(t+gR_{n-1}+ g R_{n}+gR_{n+1})
$$
in the asymptotics (10.4) is integral, and $e^{n\ln z}=z^n$ is an
entire function. Otherwise we have to indicate the branch of $\ln z$
in (10.4). 

Later on we will be especially interested in the case of equation
(10.1) with $R_{n}$ 
given by the equations (10.32) below. The exsitence of the canonical
solutions $\Psi_{j}(z)$ 
corresponding to that case will appear as a by-product of  Theorem
10.2 in the section 10.4.   
Note that the coefficients $\G_k$ in (10.4) are some elementary matrix 
functions of the parameters $R_{n-1},\; R_{n}$, and
$R_{n+1}$ which do not depend on $j$. In addition, the coefficients  
$\G_k,\;k\ge 1,$ are uniquely
determined as soon as $\G_0$ is fixed.
Due to the symmetry relation
$$
A(-z) = -\sg_3 A(z) \sg_3 \, ,
\eqno (10.6)
$$
all $\G_{2l}$ are diagonal while all $\G_{2l+1}$ are
off--diagonal. In particular,
$$
\G_1=
\pmatrix
0 & 1 \\
R_n^{1/2} & 0
\endpmatrix .
$$
The equation (10.6) implies that
$$
\Psi_{j+4}(-z)=(-1)^n\sg_3\Psi_j(z)\sg_3.
$$
Since $\overline{A(z)}=A(\overline z)$, we also have that
$$  
\overline{\Psi_2(z)}=\Psi_1(\overline z),\qquad
\overline{\Psi_3(z)}=\Psi_8(\overline z),\qquad
\overline{\Psi_4(z)}=\Psi_7(\overline z),\qquad
\overline{\Psi_5(z)}=\Psi_6(\overline z).
$$
\vskip 3mm
Having defined the canonical solutions, we can introduce the
{\it{Stokes Matrices}} as
$$
S_{j} = {\Psi_{j}}^{-1}(z)\Psi_{j+1}(z),\qquad j= 1,...,8\, ;
\qquad
\Psi_{9} \equiv \Psi_{1}.\eqno (10.7)
$$
Since all $\Psi_j(z)$ satisfy the same matrix differential equation
(11.1), the matrices $S_j$ do not depend on $z$. The matrices
$S_j$  obey the following general constraints:
$$
S_{j+4} = \sg_{3}S_{j}\sg_{3},\quad \overline{S_{1}} =
{S_{1}}^{-1},\quad 
\overline{S_{2}} = {S_{8}}^{-1},\quad \overline{S_{3}} = {S_{7}}^{-1}, 
\quad S_{1}S_{2}\dots S_{8} = I\, ,
\eqno (10.8)
$$
where the bar means the complex conjugation of matrix elements, and 
$$
S_{2l+1} =\pmatrix
1 & s_{2l+1} \\
0 & 1
\endpmatrix,\quad
S_{2l} = \pmatrix
1 & 0 \\
s_{2l} & 1
\endpmatrix.
\eqno (10.9)
$$
The first four constraints in (10.8) are expressed in terms of $s_j$
as follows: 
$$
s_{j+4}=-s_j,\qquad \Re s_1=\Im s_3=0,\qquad s_4=\overline{s_2}.
$$
The constraint 
$S_1S_2\dots S_8=I$ is equivalent to the equation
$$
s_1s_2+s_1s_4+s_3s_4-s_2s_3+s_1s_2s_3s_4=0.
$$
If we change $\la_n$ for $\la_n+c$ in (10.4), then the solution
$\Psi_j(z)$ is changed to $\Psi_j(z)\exp(-c\sg_3)$, and hence   
the element $s_j$ are changed as follows:
$$
s_{2l+1}\to s_{2l+1}e^{-2c},\qquad s_{2l}\to s_{2l}e^{2c}.
$$ 
Assuming that $s_{1} \neq 0$ we can fix the
 normalization constant $\la_{n}$ if we put
$$
s_{1} = -2\pi i
\eqno (10.10)
$$
(cf. (5.19)).
The algebraic equations (10.8)--(10.10) indicate that the set
$\{S_{j}\}$ of 
{\it{Monodromy Data}} of the differential equation (10.1) can be
parametrized by three real parameters, $s_{3},\; \text {Re}\,
s_{2},\;\text 
 {Im}\, s_{2} $,
satisfying the equation
$$
s_{3}\left(|s_{2}|^{2} - {1\over{\pi}}\,\text {Im}\,s_{2}\right) + 2\,\text
{Re}\, s_{2} = 
0.
\eqno (10.11)
$$

{\bf Proposition 10.1.} {\it The monodromy  map,
$$
\left\{R_{n-1}, R_{n}, R_{n+1}: {n\over{N}} =
 R_{n}(t + g R_{n-1}+ gR_{n} +gR_{n+1} )\right\}
\Longrightarrow
$$
$$
\Longrightarrow\left\{s_{2}, s_{3}: \; s_{3}\left(|s_{2}|^{2} - {1\over{\pi}}
{\Im}\,s_{2}\right) + 2{\Re}\, s_{2} =
0 \right\}
$$
is one-to-one.}

{\it Proof.} Consider two systems,
$$
\Psi'(z) = NA(z)\Psi(z) \quad {\text{and}}\quad \tilde{\Psi}'(z) = N\tilde{A}(z)\tilde{\Psi}(z),
$$
from the class (10.1-3) whose monodromy data coincide. Let $\Psi_{j}(z)$
and $\tilde{\Psi}_{j}(z)$ be the corresponding canonical matrix solutions.
Put
$$
F(z) = \tilde{\Psi}_{1}(z)\Psi^{-1}_{1}(z).
$$
Since the basic monodromy equation (10.7) has the same l.h.s.,
regardless which of the two sets of the canonical solutions is
taken, we have that
$$
F(z) = \tilde{\Psi}_{2}(z)\Psi^{-1}_{2}(z) = 
\tilde{\Psi}_{3}(z)\Psi^{-1}_{3}(z)=....
=\tilde{\Psi}_{8}(z)\Psi^{-1}_{8}(z).
$$
This implies that the asymptotic equation,
$$
F(z) = F_{\infty} +O\left( z^{-1}\right ),\quad 
F_{\infty} = e^{(\lambda_{n}-\tilde{\lambda}_{n})\sigma_{3}}
\pmatrix
1 & 0 \\
0 & \frac{R^{1/2}_{n}}{\tilde{R}^{1/2}_{n}}
\endpmatrix,
$$
$$
z\to \infty,\quad -\frac{3\pi }{8}< \arg z < \frac{\pi}{8},
$$
which follows from (10.4) and (10.5) ($j=1$), is  valid
in the whole neighborhood of $z=\infty$. A prior, $F(z)$ is an entire
function. Therefore, we conclude that $F(z)$ is in fact a constant diagonal
matrix, i.e.
$$
F(z) \equiv F_{\infty}.
$$
This in turn yields the equation,
$$
A(z) = F^{-1}_{\infty}\tilde{A}(z)F_{\infty},\qquad \forall\, z,
$$
or, component-wise,
$$\eqalignno{
\frac{tz}{2} + \frac{gz^{3}}{2} +gzR_{n}&=\frac{tz}{2} +
\frac{gz^{3}}{2} +gz\tilde{R}_{n},\qquad \forall\, z, 
& (10.12)\cr
gz^{2} + \theta_{n} &= (gz^{2} + \tilde{\theta}_{n})e^{2(\tilde{\lambda}_{n} -
\lambda_{n})}\,,\qquad \forall\, z,
& (10.13) \cr
gz^{2} + \theta_{n-1} &= (gz^{2} + \tilde{\theta}_{n-1})e^{2(
{\lambda}_{n} -\tilde\lambda_{n})}\frac{\tilde{R}_{n}}{R_{n}}\,,
\qquad \forall\, z. 
& (10.14)\cr}
$$
>From  equation (10.12) it follows that
$$
R_{n} = \tilde{R}_{n}.
$$
After that,  equations (10.13) and (10.14) imply
$$
\tilde{\lambda}_{n} = \lambda_{n},\quad R_{n\pm 1} = \tilde{R}_{n\pm 1},
$$
which completes the proof of the Proposition.
\vskip .1in  

For what follows it is useful to introduce a piecewise analytic matrix
function $\Psi(z)$ on a complex plane, 
which coincides with the function $\Psi_j(z)$ in the sector
$$
\left\{ z\in\C\: \;{\pi(j-2)\over 4}\le \arg z\le {\pi(j-1)\over
4}\right\},\qquad j=1,\dots,8.
$$
The function $\Psi(z)$ has the asymptotics (10.4),
$$
\Psi(z)\sim
\left(\sum_{k=0}^\infty{\G_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z + \la_{n} \right)\sg_3},
\qquad z\to\infty,
$$
and it is two--valued on the rays 
$$ 
r_{j} = \{z\in \C :\,\arg z = {{\pi (j-1)} \over 4}\},
$$
where its two values are related by the equation (cf.10.7),
$$
\Psi_+(z)=\Psi_-(z)S_j,\qquad z\in r_j,\qquad j=1,\dots,8,\eqno 
$$
assuming that the orientation on $r_j$ is from 0 to $\infty$.
This describes the Riemann--Hilbert problem for which $\Psi(z)$
is a solution. The Riemann-Hilbert problem is depicted in Fig.2.

\vskip .4in
\psdump{p2.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000433
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 17:39:16 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 200 280 411 512
%%Pages: 1
%%EndComments
/$F2psDict 200 dict def 
$F2psDict begin
$F2psDict /mtrx matrix put
/l {lineto} bind def
/m {moveto} bind def
/s {stroke} bind def
/n {newpath} bind def
/gs {gsave} bind def
/gr {grestore} bind def
/clp {closepath} bind def
/graycol {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul
4 -2 roll mul setrgbcolor} bind def
/col-1 {} def
/col0 {0 0 0 setrgbcolor} bind def
/col1 {0 0 1 setrgbcolor} bind def
/col2 {0 1 0 setrgbcolor} bind def
/col3 {0 1 1 setrgbcolor} bind def
/col4 {1 0 0 setrgbcolor} bind def
/col5 {1 0 1 setrgbcolor} bind def
/col6 {1 1 0 setrgbcolor} bind def
/col7 {1 1 1 setrgbcolor} bind def
/col8 {.68 .85 .9 setrgbcolor} bind def
/col9 {0 .39 0 setrgbcolor} bind def
/col10 {.65 .17 .17 setrgbcolor} bind def
/col11 {1 .51 0 setrgbcolor} bind def
/col12 {.63 .13 .94 setrgbcolor} bind def
/col13 {1 .75 .8 setrgbcolor} bind def
/col14 {.7 .13 .13 setrgbcolor} bind def
/col15 {1 .84 0 setrgbcolor} bind def
        end
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
%%EndProlog

$F2psBegin
0 setlinecap 0 setlinejoin
13.5 640.0 translate 0.720 -0.720 scale
0.500 setlinewidth
n 397.000 207.000 m 399.000 199.000 l 401.000 207.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 399 199 m 399 439 l gs col-1 s gr
n 401.000 431.000 m 399.000 439.000 l 397.000 431.000 l gs 2 setlinejoin col-1 s gr
n 321.071 399.757 m 314.000 404.000 l 318.243 396.929 l gs 2 setlinejoin col-1 s gr
% Polyline
n 314 404 m 484 234 l gs col-1 s gr
n 476.929 238.243 m 484.000 234.000 l 479.757 241.071 l gs 2 setlinejoin col-1 s gr
n 287.000 321.000 m 279.000 319.000 l 287.000 317.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 279 319 m 519 319 l gs col-1 s gr
n 511.000 317.000 m 519.000 319.000 l 511.000 321.000 l gs 2 setlinejoin col-1 s gr
n 318.243 241.071 m 314.000 234.000 l 321.071 238.243 l gs 2 setlinejoin col-1 s gr
% Polyline
n 314 234 m 484 404 l gs col-1 s gr
n 479.757 396.929 m 484.000 404.000 l 476.929 399.757 l gs 2 setlinejoin col-1 s gr
1.000 setlinewidth
% Polyline
n 399 319 m 519 319 l gs col-1 s gr
/Symbol findfont 12.00 scalefont setfont
529 499 m 
gs 1 -1 scale (Y) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
539 499 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
534 324 m 
gs 1 -1 scale (1) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
489 234 m 
gs 1 -1 scale (2) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
404 199 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
304 234 m 
gs 1 -1 scale (4) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
269 334 m 
gs 1 -1 scale (5) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
309 424 m 
gs 1 -1 scale (6) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
404 464 m 
gs 1 -1 scale (7) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
399 459 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
494 419 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
529 319 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
484 229 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
399 194 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
299 229 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
264 329 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
304 419 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 399 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
324 334 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
319 264 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
354 379 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
464 374 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
459 309 m 
gs 1 -1 scale (S) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
469 314 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
434 259 m 
gs 1 -1 scale (S) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
444 264 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 229 m 
gs 1 -1 scale (S) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
389 234 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
329 269 m 
gs 1 -1 scale (4) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
334 339 m 
gs 1 -1 scale (5) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
364 384 m 
gs 1 -1 scale (6) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
414 404 m 
gs 1 -1 scale (7) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
474 379 m 
gs 1 -1 scale (8) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
499 424 m 
gs 1 -1 scale (8) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
259 499 m 
gs 1 -1 scale (Fig. 2.) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
299 499 m 
gs 1 -1 scale (The Riemann-Hilbert problem for the function) col-1 show gr
showpage
$F2psEnd

EndOfTheIncludedPostscriptMagicCookie
\closepsdump
\ce {\psbox{p2.ps}}
\vskip .4in

Performing the gauge transformation,
$$
\Psi(z) \rightarrow \Phi(z) =
e^{\lambda_{n}\sigma_{3}}{\Gamma}_{0}^{-1}\Psi(z), 
$$
we  formulate the  following {\it{normalized}} Riemann-Hilbert problem,
 which is associated to the system (10.1) (cf. (3.9-10) in [FIK2]):
$$
\Phi(z)\sim
\left(I+\sum_{k=1}^\infty{\Theta_{k}\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z  \right)\sg_3},
\qquad z\to\infty,
\eqno (10.15a)
$$
$$
\Phi_{+}(z)=\Phi_{-}(z)S_j,\qquad z\in r_j,\qquad j=1,\dots,8,
\eqno(10.15b) 
$$
$$ 
r_{j} = \{z\in \C :\,\arg z = {{\pi (j-1)} \over 4}\}.
$$


 Now we are ready to discuss the inverse monodromy problem: how to
reconstruct a differential equation by the monodromy data. 
 

\beginsection
10.2. Inverse Monodromy Problem
\par

Assume that $\Phi(z)$ is a solution of the Riemann--Hilbert problem
(10.15a,b) . Put
$$
Y(z)=\Phi(z) e^{W(z)\sg_3},
\eqno (10.16)
$$
where we denote for the sake of brevity,
$$
W(z)={NV(z)\over 2}-n\ln z.
$$
Then 
$$
\Phi(z)=Y(z)e^{-W(z)\sg_3},
\eqno (10.17)
$$
and by (10.15a),
$$
Y(z)\sim I+\sum_{k=1}^\infty{\Theta_{k}\over z^k}, \qquad z\to\infty.
\eqno (10.18)
$$
Next lemma, which is of course just a particular case of the corresponding general
construction (see e.g., [JMU]), shows that the Riemann-Hilbert problem implies a
polynomial matrix differential equation on $\Phi(z)$. We shall use the following
usual notations: If 
$$
B(z)\sim \sum_{k=-\infty}^m b_kz^k,\qquad z\to\infty,
$$
we denote by
$$
\biggl\{ B(z)\biggr\}_+=\sum_{k=0}^m b_kz^k,
$$
the polynomial part of $B(z)$ at infinity.




{\bf{Lemma 10.1.}} {\it Assume that $\Phi(z)$ is a solution of the RH
problem (10.15a,b).
Then $\Phi(z)$ satisfies the polynomial $2\times 2$ matrix
differential equation (10.1) with
$$
A(z)= -(1/2)\biggl\{Y(z) V'(z)\sg_3 Y^{-1}(z)\biggr\}_+,
\eqno (10.19)
$$
where $Y(z)$ is defined in (10.16).}


{\it Proof.} Observe that $\det\Phi(z)$ is an entire function,
since
$$
\det \Phi_{+}(z)=\det \Phi_{-}(z) \det S_j
=\det \Phi_{-}(z).
$$
In addition, 
$$
\lim_{z\to\infty} \det \Phi(z)=\lim_{z\to\infty}\det Y(z)=\det I = 1.
$$
Hence
$$
\det \Phi(z)\equiv1\not=0.
$$
We want to check that 
$\Phi(z)$ satisfies a matrix differential equation. 
Define
$$
Q(z)=\Phi'(z)\Phi^{-1}(z).
$$
Then by (10.15b),
$$
Q_+(z)=\Phi_{+}'(z)\Phi_{+}^{-1}(z)
=\Phi'_{-}(z)S_jS_j^{-1}\Phi_{-}^{-1}(z)=Q_-(z),
$$
so that $Q(z)$ is an entire matrix-valued function. By (10.17),
$$\eqalign{
Q(z)&=\left[Y'(z)e^{-W(z)\sg_3}-Y(z)W'(z)\sg_3e^{-W(z)\sg_3}\right]
e^{W(z)\sg_3}Y^{-1}(z)\cr
&=\left[Y'(z)-Y(z)W'(z)\sg_3\right]Y^{-1}(z),\cr}
$$
hence $Q(z)$ grows polynomially at infinity, and hence $Q(z)$ is a
polynomial, 
$$
Q(z)=\biggl\{ \left[Y'(z)-Y(z)W'(z)\sg_3\right]Y^{-1}(z)\biggr\}_+
=-(N/2)\biggl\{Y(z) V'(z)\sg_3 Y^{-1}(z)\biggr\}_+\,.
$$
Thus we get a polynomial differential equation on $\Phi(z)$,
$$
\Phi'(z)=Q(z)\Phi(z),
$$
with
$$
Q(z)=-(N/2)\biggl\{Y(z) V'(z)\sg_3 Y^{-1}(z)\biggr\}_+.
$$
Lemma 10.1 is proved.

Solution $\Phi(z)$ of the Riemann-Hilbert problem (10.15a,b) is
uniquely defined (if it exists) by the set of the Stokes
matrices $\{S_{j},\;j=1,\dots,8\}$, 
which we assume satisfy the restrictions (10.8-10). A straightforward
calculation 
based on the asymptotic series (10.18) and on the
symmetry $z\to -z$, leads to the following representation for the matrix
$A(z)$ in (10.19) (cf.(10.1)): 
$$
A(z)=
\pmatrix
-({tz\over 2}+{gz^3\over 2}+gzR_n)
& {\beta}_{+}(gz^2+\theta_n)\\
-{\beta}_{-}(gz^2+\theta_{n-1})
& {tz\over 2}+{gz^3\over 2}+gzR_n
\endpmatrix ,\qquad \theta_{n} = t + g R_{n} + g R _{n+1},
\eqno (10.20)
$$
where the real parameters $R_{n}, R_{n\pm 1},$ and $\beta_{\pm}$,
are given by the equations:
$$\eqalign{
\beta_{+}& = (\Theta_{1})_{12},\qquad \beta_{-} = (\Theta_{1})_{21},\qquad
R_{n} = \beta_{-}\beta_{+},\cr
R_{n+1} &= \beta^{-1}_{+}(\Theta_{3})_{12}- (\Theta_{2})_{22},\qquad
R_{n-1} = \beta^{-1}_{-}(\Theta_{3})_{21}- (\Theta_{2})_{11},\cr}
$$
and $(\Theta_{k})_{jl}$ denote the entries of the matrix coefficients
$\Theta_{k}$ in the asymptotic series (10.18). Moreover, substituting 
(10.17), (10.18) into (10.1) and equating the terms
of order $z^{-1}$ in (10.1), one can easily see that the quantities
$R_{n}, R_{n\pm 1},$ satisfy the Freud equation (10.3).

Observe now that the gauge transformation,
$$
\Phi(z) \rightarrow \Psi(z)=
\pmatrix
\beta_{+}^{-1/2} & 0 \\
0 &  \beta_{-}^{-1/2}
\endpmatrix \Phi(z),
$$
brings the matrix (10.20) to the form indicated in (10.2). Hence we
can state the 
following theorem (cf. Theorem 3.1 in [FIK4]), which reduces the
inverse monodromy problem for the system (10.1)  
to the analysis of the Riemann-Hilbert problem (10.15a,b). 

{\bf{Theorem 10.1.}} {\it{Assume that Riemann-Hilbert problem (10.15a,b) 
is solvable. Assume also that its solution $\Phi(z)$ satisfies the
condition  $(\Theta_{1})_{12} 
(\Theta_{1})_{21} \neq 0$ (generic case).
Then, {\bf\{i\}} there exists a unique differential equation (10.1)
whose set
of monodromy data coincides with the given set 
$\left\{S_{j}, j=1,...,8\right\}$; {\bf\{ii\}} the corresponding
parameters $R_{n-1}$,
$R_{n}$, $R_{n+1},$ and $ \la_{n} $ can be evaluated in terms of
the matrix coefficients of the series (10.18) according to the equations

$$\eqalign{
R_{n} &= (\Theta_{1})_{12} (\Theta_{1})_{21},\qquad
R_{n+1} = (\Theta_{1})^{-1}_{12}(\Theta_{3})_{12}-
(\Theta_{2})_{22}\,,\cr
R_{n-1} &=  (\Theta_{1})^{-1}_{21}(\Theta_{3})_{21}-
(\Theta_{2})_{11}\,, \qquad
\la_{n} = {1\over 2}\ln(\Theta_{1})_{12}\,  ;\cr}
$$ 
{\bf\{iii\}} the corresponding canonical solutions $\Psi_{j}(z),\;
j=1,\dots,8,$  are given by the formula:

$$
\Psi_{j}(z) = 
\pmatrix
(\Theta_{1})^{-1/2}_{12} & 0 \\
0 & (\Theta_{1})^{-1/2}_{21} 
\endpmatrix
\Phi(z),\qquad
{\pi (j-2)\over 4} \leq \arg z \leq {\pi (j-1)\over 4}\,.
$$
 }} 

\beginsection
10.3. Triangular case. Orthogonal polynomials.
\par

Let us suppose that in (10.15b) all Stokes matrices with even indices
are trivial, i.e. 
$$
S_{2l} = I,
$$
and consider the matrix function,
$$
Y^{*}(z) = \Phi(z)e^{\frac{NV(z)}{2}\sigma_{3}}.
$$
This function satisfies the following RH problem on the cross $L =\R
\bigcup i\R$:
$$\eqalignno{
Y^{*}_{+}(z) &= Y^{*}_{-}(z)
\pmatrix
1 & se^{-{NV(z)}}\\
0 & 1
\endpmatrix,\qquad z \in L\,,
& (10.21)\cr
Y^{*}(z)&\sim
\pmatrix
z^{n} + O(z^{n-1}) & O(z^{-n-1}) \\
O(z^{n-1}) & z^{-n} + O(z^{-n-1})
\endpmatrix,\qquad
z\to \infty\,.
& (10.22)\cr}
$$
The Riemann-Hilbert problem (10.21-22) is depicted in Fig.3. 
We assume that the cross $L$ is oriented in a natural way, i.e., from
$-\infty$ to $ +\infty$, and from
$-i\infty$ to $ +i\infty$ (see Fig.3) so that in (10.21)
$$
s = s_{1} = -2\pi i\quad  \text {if}\quad z\in \R\,,\qquad
s = s_{3} \quad  \text {if}\quad z\in i\R\,.
$$
\vskip .4in
\psdump{p3.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000445
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 17:42:39 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 171 302 440 490
%%Pages: 1
%%EndComments
/$F2psDict 200 dict def 
$F2psDict begin
$F2psDict /mtrx matrix put
/l {lineto} bind def
/m {moveto} bind def
/s {stroke} bind def
/n {newpath} bind def
/gs {gsave} bind def
/gr {grestore} bind def
/clp {closepath} bind def
/graycol {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul
4 -2 roll mul setrgbcolor} bind def
/col-1 {} def
/col0 {0 0 0 setrgbcolor} bind def
/col1 {0 0 1 setrgbcolor} bind def
/col2 {0 1 0 setrgbcolor} bind def
/col3 {0 1 1 setrgbcolor} bind def
/col4 {1 0 0 setrgbcolor} bind def
/col5 {1 0 1 setrgbcolor} bind def
/col6 {1 1 0 setrgbcolor} bind def
/col7 {1 1 1 setrgbcolor} bind def
/col8 {.68 .85 .9 setrgbcolor} bind def
/col9 {0 .39 0 setrgbcolor} bind def
/col10 {.65 .17 .17 setrgbcolor} bind def
/col11 {1 .51 0 setrgbcolor} bind def
/col12 {.63 .13 .94 setrgbcolor} bind def
/col13 {1 .75 .8 setrgbcolor} bind def
/col14 {.7 .13 .13 setrgbcolor} bind def
/col15 {1 .84 0 setrgbcolor} bind def
        end
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
%%EndProlog

$F2psBegin
0 setlinecap 0 setlinejoin
33.5 607.0 translate 0.630 -0.630 scale
0.500 setlinewidth
% Polyline
n 259 319 m 539 319 l gs col-1 s gr
n 531.000 317.000 m 539.000 319.000 l 531.000 321.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 399 419 m 399 219 l gs col-1 s gr
n 397.000 227.000 m 399.000 219.000 l 401.000 227.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 589 469 m 584 469 l  584 469 l gs col-1 s gr
/Times-Roman findfont 15.00 scalefont setfont
464 309 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
474 314 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
309 309 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
319 314 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
594 474 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
604 474 m 
gs 1 -1 scale (V\(z\)) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
629 484 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
629 474 m 
gs 1 -1 scale (-) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
629 464 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
639 469 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 269 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
389 274 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 384 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
389 389 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
544 479 m 
gs 1 -1 scale (Y) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
554 474 m 
gs 1 -1 scale (*) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
559 479 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
574 479 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Bold findfont 15.00 scalefont setfont
554 324 m 
gs 1 -1 scale (R) col-1 show gr
/Times-Bold findfont 15.00 scalefont setfont
399 204 m 
gs 1 -1 scale (R) col-1 show gr
/Times-Bold findfont 12.00 scalefont setfont
394 204 m 
gs 1 -1 scale (i) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
219 479 m 
gs 1 -1 scale (Fig. 3.) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
264 479 m 
gs 1 -1 scale (The Riemann-Hilbert problem for the function) col-1 show gr
showpage
$F2psEnd

EndOfTheIncludedPostscriptMagicCookie
\closepsdump
\ce {\psbox{p3.ps}}
\vskip .4in

The RH problem (10.21)--(10.22) is triangular and hence (cf. [FIK4],
section 3.4) it can be solved in a closed form.
The 11 and 21 components of (10.21) yield $(Y^{*}_{+}(z))_{11} =
(Y^{*}_{-}(z))_{11}$ and $(Y^{*}_{+}(z))_{21} =
(Y^{*}_{-}(z))_{21}$. Using these equations and (10.22), we find that 
$$
(Y^{*}(z))_{11} = P_{n}(z),\qquad (Y^{*}(z))_{21} = Q_{n-1}(z)
\eqno (10.23)
$$
where $P_{n}(z)$ and $Q_{n-1}(z)$ are some polynomials of the 
degree $n$ and $n-1$, respectively, such that
$$
P_{n}(z) = z^{n} + \dots 
\eqno (10.24)
$$
By (10.21),
$$\eqalign{
&(Y^{*}_{+}(z))_{12} - (Y^{*}_{-}(z))_{12} =
se^{-NV(z)}(Y^{*}_{-}(z))_{11}, \cr
&(Y^{*}_{+}(z))_{22} - (Y^{*}_{-}(z))_{22} =
se^{-NV(z)}(Y^{*}_{-}(z))_{21},\cr} 
$$
which together with (10.23) provide us with the following representation
for the solution $Y^{*}(z)$ of the problem (10.21,22):
$$
Y^{*}(z) =
\pmatrix
P_{n}(z) & {1\over 2\pi i}\int_L {{e^{-NV(\mu)}P_{n}(\mu)d{\mu}}\over{\mu
- z}} 
\\
Q_{n-1}(z) & {1\over 2\pi i}\int_L {{e^{-NV(\mu)}Q_{n-1}(\mu)d{\mu}}
\over{\mu - z}}
\endpmatrix
\eqno (10.25)
$$
where
$$
\int_L = s_{1}\int_{-\infty}^{+\infty} + s_{3}\int_{-i\infty}^{+i\infty}
$$
It remains to notice that the asymptotic condition (10.22) is satisfied
iff
$$
\int_L {\mu}^{l}e^{-NV(\mu)}P_{n}(\mu)d{\mu} =0,\qquad l = 0,1,\dots, n-1,
\eqno (10.26)
$$
and
$$
-{1\over{2\pi i}}\int_L {\mu}^{l}e^{-NV(\mu)}Q_{n-1}(\mu)d{\mu} =
\delta_{l,n-1},\qquad l = 0,1,\dots, n-1.\eqno (10.27)
$$
These equations imply that $P_{n}(z)$ are orthogonal polynomials on the
cross $L$ with respect to the measure $e^{-NV(z)}dz$:
$$
\int_L P_{n}(z)P_{m}(z)e^{-NV(z)}dz =-2\pi
ih_{n}\delta_{n,m} ,\qquad
 P_{n}(z) = z^{n} +\dots ,
\eqno (10.28)
$$
and
$$
Q_{n-1}(z) = {1\over{h_{n-1}}}P_{n-1}(z)
\eqno (10.29)
$$
\vskip .3in

The equations (10.26)--(10.27), together with the normalization
condition (10.24), 
determine the polynomials $P_{n}(z)$ and $Q_{n-1}(z)$ uniquely 
assuming the nondegeneracy condition
$$
\det \left|\left| \left\{ \int
{\mu}^{k}{\mu}^{j}e^{-NV(\mu)}d{\mu}\right\} 
_{j,k = 1,\dots ,n-1}\right|\right| \neq 0\,.
\eqno (10.30)
$$
This condition  holds for generic $s_{3}$ and for the case (1.3)
of our principal interest, i.e., when
$$
s_{3} = 0\,.
\eqno (10.31)
$$

We note also that the function $Y^{*}(z)$ relates to the orthogonal
polynomial $\Psi$-function, $\Psi_{n}(z)$ (which was introduced in the
section 4), by the equation: 
$$
\Psi_{n}(z) = 
\pmatrix
h^{-1/2}_{n} & 0 \\
0 & h^{1/2}_{n-1}
\endpmatrix
Y^{*}_{n}(z)e^{-\frac{NV(z)}{2}\sg_{3}}. 
$$
The corresponding Riemann-Hilbert problem is exactly our main problem
(5.16-18).
\vskip .2in

{\it Remark.} The technique used in this section was first suggested
by Fokas, Mugan, and Ablowitz
[FMA] for analyzing the explicit 
solutions of the Painlev{\'{e}} equations. In [FIK4] it was applied to
the case of an 
arbitrary even polynomial $V(z)$. In fact, using the same idea one can
reduce the analysis of an {\it arbitrary} system of the orthogonal
polynomials $\{P_{n}(z)\}$ 
on some contour $L$ with some weight  $\omega(z)$   
to the analysis of the relevant $2\times 2$ matrix Riemann-Hilbert
problem. The RH problem is formulated for a
$2\times 2$ matrix function $Y^*(z)$ which is analytic outside of the 
contour $L$, normalized by the asymptotic condition 
$$
 \qquad {Y^*(z)}{z}^{-n{\sigma}_{3}} \rightarrow I\,, \qquad
 {z} 
 \rightarrow {\infty}\,,  \qquad
\sg_{3} = 
\pmatrix
1 & 0 \\
0 & -1
\endpmatrix,
$$
and whose boundary values $Y_{\pm}^*(z)$ satisfy equation:

$$
 \qquad Y_{+}^*(z) = Y_{-}^*(z)
\pmatrix
1 & -2\pi i\omega (z) \\
0 & 1
\endpmatrix,