



\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,\qquad
z \in L.
$$


This Riemann-Hilbert problem  can be also used to explain the
appearance (see, e.g., [ASM]) of the KP-type hierarchies 
in the matrix models. Indeed, let us assume that the weight function
$\omega(\lambda)$ is of the form
$$
\omega(z) = \exp \left({\sum_{k=1}^{m}t_{k}{z}^{k}}\right)
$$ 
and put
$$
\Psi(z) =
Y^*(z)\exp\left({\frac{1}{2}\,\sum_{k=1}^{m}t^{k}{z}^{k} 
\sigma_{3}}\right).
$$
Then, the same arguments as the ones we used for proving Lemma 10.1 
yield (cf. (1.12-16) in [FIK4]) the system of linear differential and difference
equations for the function  
$\Psi(z)\equiv \Psi(z; n, t_{1}, t_{2}, t_{3},\dots)$,
$$
\eqalignno{
\Psi(z;n+1) &= U_n(z)\Psi(z; n),\cr
{\partial}_{z}\Psi(z) &= A_n(z)\Psi(z),\cr
{\partial}_{t_{k}}\Psi(z) &= V^{(k)}_n(z)\Psi(z),\qquad
k=1,2,3,\dots, \cr}
$$
where $U_n(z)$, $A_n(z)$, and $V^{(k)}_{n}(z)$ are polynomial
on $z$ (for their exact expressions in terms of the corresponding
$R_{n}$ see [FIK4]). The first 
two equations constitute the Lax pair for the relevant Freud equation
(cf. (3.11)):
$$
U_n'(z)=A_{n+1}(z)U_n(z)-U_n(z)A_n(z)\,.
$$
 The compatability conditions of the 
third equations with the different $k$ generate the KP-type hierarchy
of the integrable PDEs; 
the compatability condition of the second and the third equations
produces the Virasoro-type   
constraints; the compatability condition of the first and the third
equations is related to 
the Toda-type hierarchy and vertex operators.


\vskip .3in
\noindent{\bf 10.4. Asymptotic Solution of the Direct Monodromy
Problem. Complex WKB Analysis }  
\par



%\beginsection
%4. Asymptotic Solution of the Direct Monodromy Problem.
%   WKB Analysis.
%\par

Our aim now is to study the direct monodromy problem for the system
(10.1). We will assume that the numbers $R_{n-1},\; R_n$ and $R_{n+1}$
are given by the equations
$$
R_n = \frac{-t- 2\alpha_{n}}{2g},\qquad R_{n\pm 1} = \frac{-t+
2\alpha_{n}} {2g}
\mp \frac{1}{2N\alpha_{n}},
\eqno (10.32a)
$$
where
$$
\alpha_{n} =\frac{(-1)^n}{2}\sqrt{t^{2} - {4gn\over N}}.
$$
It is easy to check that the formulae (10.32a) are consistent with the
Freud equation (10.3), and that they imply the equations
$$
\theta_{n} = -\frac{g}{2N\alpha_{n}}, \qquad
\theta_{n-1} = \frac{g}{2N\alpha_{n}},
\eqno (10.32b)
$$
for the quantities $\theta _{n,n-1}$ in (10.2).
\vskip .1in

We are interested in the semiclassical
asymptotics for solutions of the equation (10.1) in the case when
$n,N\to\infty$ in such a way that $n/N$ approaches a limit such that
$$
0< \lim_{N\to\infty}{n\over N} < \lacr = {t^{2}\over{4g}}\,.
\eqno (10.33)
$$
We denote 
$$
\la=n/N
$$
and we derive a semiclassical asymptotics for
$\Psi(z)$, 
which is uniform in the  interval $\ep\le \la\le \lacr-\ep$ for
every fixed $\ep>0$. The condition (10.32) is motivated by the
formal asymptotic expansion for {\it genuine} $R_n$ discussed in the
section 6. 

We shall follow the standard scheme (see [IN]) of the asymptotic analysis 
in the framework of the Isomonodromy Method.

The {\bf{first step}} is a construction of
relevant WKB-solutions of the system (10.1). According to the general
WKB-method (see, e.g., [Was] and [Fed]), the WKB solutions have the
asymptotics 
$$
\Psi^{\WKB}(z)\sim T(z)e^{-N\int_{z^{0}}^{z}\mu(u)du\sg_{3}},\qquad
N\to\infty, 
\eqno (10.34)
$$
where, 
$$
\mu(z) = \sqrt{-\det A(z)} 
$$
is an eigenvalue of the matrix $A(z)$, 
and $T(z)$ is the matrix of eigenvectors, so that $T(z)$ diagonalizes the
matrix $A(z) = \{a_{jk}(z)\}_{j,k=1,2}$. The lower limit of
integration $z^{0}$ is an arbitrary number which can be chosen differently
for different solutions. The Freud equation (10.3)
simplifies the formula for $\det A(z)$ to
$$
\det A(z)=-\left({tz\over 2}+{gz^3\over 2}\right)^2
+{gnz^2\over N}+R_n\t_{n-1}\t_n, \qquad \t_n=t+gR_n+gR_{n+1},
$$
(cf. (3.$9'$)). The condition (10.32) implies that 
$$
\t_{n-1},\t_n=O(N^{-1}),
$$
hence (see the proof of the theorem 10.2 below) we can neglect the
term $R_n\t_{n-1}\t_n$ in $\det A(z)$ and take
$$ 
\mu(z)=\sqrt{\left({tz\over 2}+{gz^3\over 2}\right)^2
-{gnz^2\over N}}={z\over 2}\sqrt{(t+gz^2)^2-4\la g}\,.
\eqno (10.35)
$$
%We note that
%$$
%\mu^{2}(z) = U_{0}(z)+{gz^2\over 2N}\,,
%$$
%so that $\mu^2(z)$ is the zeroth order approximation of the potential
%in the Schr{\"{o}}dinger equation (3.26). 
%\vskip .2in
 
To formulate rigorous statements concerning the WKB-solutions, we need
to indroduce some 
standard ingredients of the complex WKB-method:

{\bf{(a)}} {\it{Stokes' lines}} are defined by the equations
$$
\text {Re}\,\int_{z_{k}}^{z} \mu(u)du = 0,
\eqno (10.36)
$$
where $z_{k},\; k=0,1,2,3,4$, are zeros of $\mu(z)$, i.e., the
{\it{turning 
points}} of the system (10.1). From (10.35) we get that
$$
z_{0} = 0,\quad z_{1,2} = \left({{-t \mp 2\sqrt{\la g}}\over g}\right)^
{1/2}, \quad z_{3} = -z_{1},\quad z_{4} = -z_{2}.
\eqno (10.37)
$$
Note that the condition $0<\la\le\lacr-\ep$ implies that
$z_{1,2}$ are real and
$$
C\sqrt\ep<z_{1}<z_{2}.
$$
The curves (10.36) are asymptotic to the rays 
$$
r^{0}_{j}=\left\{z\in \C:
\arg z = {\pi(2j-3)\over{8}}\right\},\quad j=1,2,\dots ,8.
$$
We shall denote by $\gamma_{j}$  a
Stokes line which is asymptotic to the ray $r^{0}_{j},\;j=1,\dots,8,$
and such that: 
 
(i) $\gamma_{3,8}$ come out from the turning point $ z_{1}$;

(ii) $\gamma_{1,2}$ come out from the turning point  $z_{2}$;
 
(iii) $\g_{4,7}$ come out from the turning point $- z_{1}$;

 and 

(iv) $\gamma_{5,6}$ come out from  the turning point$ -z_{2}$, 

\noindent
as indicated in Fig.4. Four additional Stokes lines, coming out
from the turning point $ z_{0} = 0$ and asymptotic to the rays $r^{0}_{j},
\;j= 3,4,7,8,$ we shall denote by $\gamma^{0}_{j},\;
j= 3,4,7,8$, respectively (see again Fig.4).
\vskip .4in
\psdump{p4.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig010309
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Thu Nov 21 12:56:29 1996
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 113 244 498 547
%%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
66.5 612.5 translate 0.630 -0.630 scale
0.500 setlinewidth
        [4.000000] 0 setdash
n 690.912 349.637 169.700 -169.599 -102.563 arc
gs col-1 s gr
        [] 0 setdash
n 674.833 285.250 154.563 95.880 167.387 arc
gs col-1 s gr
        [4.000000] 0 setdash
n 847.852 387.919 394.912 159.069 -169.949 arc
gs col-1 s gr
        [] 0 setdash
n 791.500 221.500 346.500 163.657 -163.657 arc
gs col-1 s gr
        [4.000000] 0 setdash
n 379.000 289.000 25.000 90.000 180.000 arc
gs col-1 s gr
        [] 0 setdash
n 379.357 282.929 36.369 82.665 17.723 arcn
gs col-1 s gr
n -4963.500 -1061.000 5545.587 14.143 12.338 arcn
gs col-1 s gr
        [4.000000] 0 setdash
n -70.375 360.875 430.419 -9.613 -33.390 arcn
gs col-1 s gr
        [] 0 setdash
n 381.500 351.500 32.596 -94.399 -175.601 arcn
gs col-1 s gr
n 9.000 409.000 246.982 -21.371 -68.629 arcn
gs col-1 s gr
        [4.000000] 0 setdash
n 381.500 346.500 28.504 -74.745 -15.255 arc
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n -41.385 576.692 509.258 -27.823 -7.071 arc
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 149.700 234.300 171.652 29.567 -35.755 arcn
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 80.154 275.346 164.735 15.367 83.431 arc
gs col-1 s gr
        [] 0 setdash
n -5691.000 -846.000 6157.079 11.191 12.761 arc
gs col-1 s gr
n -76.000 434.000 392.237 -17.049 11.023 arc
gs col-1 s gr
% Polyline
n 459 319 m 524 319 l gs col-1 s gr
% Polyline
n 239 319 m 299 319 l gs col-1 s gr
n 299 314 m 299 314 l gs col-1 s gr
        1 setlinecap [1 3.000000] 3.000000 setdash
% Polyline
n 299 319 m 459 319 l gs col-1 s gr
        [] 0 setdash 0 setlinecap
/Times-Roman findfont 15.00 scalefont setfont
394 459 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
619 319 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
484 214 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
519 214 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
359 174 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
399 174 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
359 459 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
664 319 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
219 439 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
254 439 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
89 314 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
129 314 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
404 469 m 
gs 1 -1 scale (8) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
369 469 m 
gs 1 -1 scale (7) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
629 329 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
674 329 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
529 224 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
494 224 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
409 184 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
369 184 m 
gs 1 -1 scale (4) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
219 209 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
259 209 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
499 434 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
539 434 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
509 444 m 
gs 1 -1 scale (8) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
549 444 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
269 219 m 
gs 1 -1 scale (4) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
229 219 m 
gs 1 -1 scale (5) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
139 324 m 
gs 1 -1 scale (5) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
99 324 m 
gs 1 -1 scale (6) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
229 449 m 
gs 1 -1 scale (6) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
264 449 m 
gs 1 -1 scale (7) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
674 444 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
669 179 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
254 129 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
439 514 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
329 514 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
74 449 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
74 169 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
679 454 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
679 189 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
79 179 m 
gs 1 -1 scale (5) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
264 139 m 
gs 1 -1 scale (4) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
79 459 m 
gs 1 -1 scale (6) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
489 514 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
499 524 m 
gs 1 -1 scale (8) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
449 524 m 
gs 1 -1 scale (8) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
309 129 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
319 139 m 
gs 1 -1 scale (4) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
424 124 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
434 134 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
474 124 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
484 134 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
334 524 m 
gs 1 -1 scale (7) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
289 514 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
294 524 m 
gs 1 -1 scale (7) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
444 509 m 
gs 1 -1 scale (0) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
334 509 m 
gs 1 -1 scale (0) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
429 119 m 
gs 1 -1 scale (0) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
314 124 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 334 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
464 329 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
534 329 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
289 329 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
294 339 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
469 339 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
544 339 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
214 329 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
224 339 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
279 329 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
204 329 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
499 579 m 
gs 1 -1 scale (D) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
509 584 m 
gs 1 -1 scale (j) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
319 579 m 
gs 1 -1 scale (The canonical WKB domains) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
274 579 m 
gs 1 -1 scale (Fig. 4.) col-1 show gr
showpage
$F2psEnd

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



{\bf{(b)}} {\it{The Canonical Domains}} $D_{j}$ are defined as
open domains whose boundaries are:
$$\eqalign{
\partial D_{1} &= \gamma_{8} \cup [z_{1},z_{2}] \cup \gamma_{2}\,,\cr
\partial D_{2} &= \gamma_{1} \cup [z_{1},z_{2}] \cup \gamma_{3}\,,\cr
\partial D_{3} &= \gamma_{2} \cup [0,z_{2}] \cup \gamma^{0}_{4}\,,\cr
\partial D_{4} &= \gamma^{0}_{3} \cup [-z_{2},0] \cup \gamma_{5}\,,\cr
\partial D_{5} &= \gamma_{4} \cup [-z_{2},-z_{1}] \cup \gamma_{6}\,,\cr
\partial D_{6} &= \gamma_{5} \cup [-z_{2},-z_{1}] \cup \gamma_{7}\,,\cr
\partial D_{7} &= \gamma_{6} \cup [-z_{2},0] \cup \gamma^{0}_{8}\,,\cr
\partial D_{8} &= \gamma^{0}_{7} \cup [0,z_{2}] \cup \gamma_{1}\,,\cr}
$$
They are depicted in Fig.4 above. Observe that the domains $D_j$ and
$D_{j+1}$ are 
overlapping, and $D_j$ contains the Stokes line $\g_j$.
A rigorous version of (10.34), which simultaneously proves the
existence of the 
canonical solutions (10.4) for the system (10.1), (10.32), can be now
formulated as the following theorem: 

{\bf{Theorem 10.2.}} 
{\it Let $D_{j},\; j=1,2,\dots 8,$ be the introduced canonical
domains.
Assume that the quantities $R_{n-1},\;R_n$ and $R_{n+1}$ are defined
as in (10.32a).
Then, in each region $D_{j}$ there exists a WKB-solution 
$\Psi^{\WKB}_{j}(z)$ of the equation (10.1),
which satisfies, under the condition (10.33), the
following asymptotic equation:
$$
\Psi_{j}^{\WKB}(z) = T_{0}(z)\left\{I +
O\left({1\over{N(1+|z|^{2})}}\right)\right\}
e^{-N\int_{z_{k(j)}}^{z}\mu(u)du\sg_{3}},\qquad
\eqno (10.38)
$$
where $z_{k(j)}$ is the initial point of the Stokes line $\g_j$,
$\mu(z)$ is given by the equation (10.35) and 
$$
T_{0}(z) =\sqrt {\frac{\mu - a_{11}}{2\mu}}
\pmatrix
1 & \frac{a^{0}_{12}}{\mu - a_{11}}\\
\frac{a^{0}_{12}}{\mu - a_{11}} & 1
\endpmatrix,
\eqno (10.39)
$$
where
$$
a_{11} = \alpha_{n}z-\frac{gz^{3}}{2},\qquad
a_{12}^{0}=R^{1/2}_{n}gz^{2}.
\eqno (10.39a)
$$
The asymptotics (10.38) is uniform in $z\in K$  for any closed
$K\subset  D_{j}$  such that\break
dist$\,\{K, \partial D_{j} \} > 0 $. 
%$$dist\{K, \partial
%D_{j}-[-z_{1},z_{1}]\cup \g^{0}_{3}\cup \g^{0}_{4}\cup \g^{0}_{7}\cup
%\g^{0}_{8} 
%\} > 0.
%$$
}
% Moreover, the product
%$$T_{0}^{-1}(z)\Psi_{j}^{\WKB}(z)e^{N\int_{z_{k(j)}}^{z}\mu(u)du\sg_{3}}
%$$
%is bounded as $N\to \infty$ uniformly with respect to $z\in \bar 
%D_{j}^{\rho}$.} 


{\it{Remark 10.1.}} The integral in the exponent in the r.h.s. of (10.38)
can be easily evaluated (cf. (7.17)). In fact, we have:
$$\eqalign{
\int_{z_{k(1,2)}} ^{z}\mu(u)du &= \int_{z_{k(5,6)}} ^{-z}\mu(u)du =
\int_{z_{2}} ^{z}\mu(u)du\cr
&={\la \over 2}\,\left[ x\sqrt{x^{2}-1} -\ln (x+\sqrt{x^{2}-1})\right]
\equiv  \xi(z),\qquad z \in D_{1}\cup D_{2},\cr}
\eqno (10.40)
$$
and
$$\eqalignno{
&\int_{z_{k(3)}} ^{z}\mu(u)du = \int_{z_{k(7)}} ^{-z}\mu(u)du =
\int_{z_{1}} ^{z}\mu(u)du = \xi(z) + i\lambda\, {\pi \over 2}\,,
\qquad z \in D_{3}\,,
& (10.41) \cr
&\int_{z_{k(8)}} ^{z}\mu(u)du = \int_{z_{k(4)}} ^{-z}\mu(u)du =
\int_{z_{1}} ^{z}\mu(u)du = \xi(z) - i\lambda\, {\pi \over 2}\,,
\qquad z \in D_{8}\,,
& (10.42)}
$$
where
$$
x={{t+gz^{2}}\over{2\sqrt{\la g}}}\,.
$$
Note also, that by (10.35) and (10.39a),
$$
\mu(z)= z(\la g)^{1/2}(x^{2} - 1)^{1/2} = z\left[ \left( \a_{n}
-{gz^2\over 2}\right)^2 -R_{n}g^2z^2\right]^{1/2}
=[a_{11}^2-(a_{12}^0)^2]^{1/2}\,,
\eqno (10.43)
$$
and the variable $x$ we use in this section differs from the variable
$x$ in (1.16) by the replacement, $\la' \to \la = {n\over N}$.
We fix the branches of the involved multivalued functions by the
conditions  
$$
-{\pi \over 2}<\arg z<{\pi \over 2},\quad -\pi <\arg  \sqrt{x^{2}-1}
 < \pi,\quad
 -\pi <\arg(x+ \sqrt{x^{2}-1}) < \pi,
\eqno (10.44)
$$
and we consider $\sqrt{x^{2}-1}$ as a single-valued analytic 
function on $\C\setminus\left([-z_{2},-z_{1}]\cup
[z_{1},-z_{2}]\right)$. 

{\it Proof of Theorem 10.2.} We follow the WKB-scheme as
given in [Kap], taking also into accouint some specific features of
the system (10.1), (10.32).  
To avoid some  inessential technical diversities we assume that $n$ is
even. 
Let us try to diagonalize the system (10.1)
with the help of the substitution
$$
\Psi(z)=T(z)\Phi(z),\qquad 
T(z)=\bigl(t_{ij}(z)\bigr)_{i,j=1,2}.
$$
Then $\Phi$ satisfies the equation 
$$
\Phi'=N B\Phi,
\eqno (10.45)
$$
where
$$
B=T^{-1}AT-{T^{-1}T'\over N}.
$$
The elements of $B$ are
$$\eqalign{
&b_{11}=\De^{-1}\bigl[a_{11}(t_{11}t_{22}+t_{12}t_{21})
+a_{12}t_{21}t_{22}-a_{21}t_{11}t_{12}
-N^{-1}(t'_{11}t_{22}-t_{12}t'_{21})\bigr],\cr
&b_{12}=\De^{-1}\bigl[2a_{11}t_{12}t_{22}
+a_{12}t_{22}^2-a_{21}t_{12}^2-
N^{-1}(t_{22}t'_{12}-t_{12}t'_{22})\bigr],\cr
&b_{21}=\De^{-1}\bigl[-2a_{11}t_{11}t_{21}
-a_{12}t_{21}^2+a_{21}t_{11}^2
-N^{-1}(t_{11}t'_{21}-t'_{11}t_{21})\bigr],\cr
&b_{22}=\De^{-1}\bigl[-a_{11}(t_{11}t_{22}+t_{12}t_{21})
-a_{12}t_{21}t_{22}+a_{21}t_{11}t_{12}
-N^{-1}(t_{11}t'_{22}-t'_{12}t_{21})\bigr],\cr}
\eqno (10.46)
$$
where
$$
\De=t_{11}t_{22}-t_{12}t_{21}.
$$
and $A(z)=\bigl(a_{ij}(z)\bigr)_{i,j=1,2}$. 
The condition $b_{12}=0$ leads to the Riccati equation (cf. [Kap]),
$$
{h'\over N}=a_{12}+2a_{11}h-a_{21}h^2,\qquad h={t_{12}\over t_{22}}\,. 
\eqno (10.47)
$$
We are looking for a solution of this equation as
$$
h(z)=h_0(z)+{h_1(z)\over N}+O(N^{-2}),
\eqno (10.48)
$$
where $h_0(z)$ and $h_1(z)$ are analytic functions near $z=0$.

>From the equations (10.2) and (10.32) we obtain that
$$\eqalign{
&a_{11}=-a_{22}=\a_n z-{gz^3\over 2},\cr
&a_{12}=R_n^{1/2}gz^2-{R_n^{1/2}g\over 2\a_n N},\cr
&a_{21}=-R_n^{1/2}gz^2-{R_n^{1/2}g\over 2\a_n N}.\cr}
\eqno (10.49)
$$
Let us substitute (10.48) and (10.49) into the Riccati equation
(10.47) and 
equate the terms of the zeroth and first order in $N^{-1}$. In the
zeroth order this produces the quadratic equation
$$
h_0^2+{2\left(\a -{gz^2\over 2}\right)h_0\over R^{1/2}gz}+1=0,
\eqno (10.50)
$$
which has two solutions, one of the order of $z^{-1}$ as $z\to 0$ and
another of the order of $z$. Taking into account the assumed evennest
of $n$, equation (10.43) and convention (10.44), the regular at $z=0$
solution of (10.50) can be written as, 
$$
h_0=-{R_{n}^{1/2}gz\over \a_{n}-{gz^2\over 2}-\left[\left( \a_{n} -{gz^2\over
2}\right)^2 -R_{n}g^2z^2\right]^{1/2}}= 
\frac{a_{12}^{0}(z)}{\mu(z)-a_{11}(z)}.
\eqno (10.51)
$$
In the first order in $N^{-1}$ the Riccati equation (10.47) produces a
linear equation on $h_1$, with the solution
$$
h_1={h_0'+(1-h_0^2)R_n^{1/2}g\, (2\a_n)^{-1}
\over 2\left(\a_n z-{gz^3\over 2}\right)+2R_n^{1/2}gz^2h_0}\,.
\eqno (10.52)
$$
The neccessary and sufficient condition for $h_1$ to be analytic at 0
is that the numerator vanishes at $z=0$,
$$
\left[h_0'+{(1-h_0^2)R_n^{1/2}g\over 2\a_n}\right]_{z=0}=0.
\eqno (10.53)
$$
>From (10.51),
$$
h_0(0)=0,\qquad h'_0(0)=-{R_n^{1/2}g\over 2\a_n}\,,
$$
hence (10.53) holds. 

The condition $b_{21}=0$ leads to another Riccati equation,
$$
{h'\over N}=a_{21}-2a_{11}h-a_{12}h^2,\qquad h={t_{21}\over t_{11}}\,.
$$
This equation can be solved in the same way as the equation (10.47), and
we get the solution
$$
h(z)=h_0(z)-{h_1(z)\over N}+O(N^{-2}),
$$
where $h_0$ and $h_1$ are the same as in (10.48).
A straightforward analysis of the equations (10.51)
and (10.52) lead to the following proposition.

{\bf{Proposition 10.2.}} {\it{The functions $h_{0}(z)$ and $h_{1}(z)$
are  holomorphic everywhere on $\C \setminus\bigl([-z_{2},-z_{1}]\cup
[z_{1},z_{2}]\bigr)$, 
and they satisfy the following global estimates:
$$
|h_{0}(z)|\leq \frac{C|z|}{1+|z|^{2}}\,, \qquad
|h'_{0}(z)|\leq \frac{C}{1+|z|^{2}}\,,
\eqno (10.54)
$$
$$
|h_{1}(z)|\leq \frac{C|z|}{1+|z|^{4}}\,, \qquad
|h'_{1}(z)|\leq \frac{C}{1+|z|^{4}}\,,
\eqno (10.55)
$$
where the positive constant $C = C(t,g,\lambda)$ is uniform in
 $z\in \C\setminus\bigl([-z_{2},-z_{1}]\cup
[z_{1},z_{2}]\bigr)$.}} 
 

Let us now take
$$
T(z)=
\pmatrix
1 & h_0(z)+{h_1(z)\over N} \\
h_0(z)-{h_1(z)\over N} & 1 
\endpmatrix,
\eqno (10.56)
$$
and analyse the analytic properties of the corresponding
matrix $B(z)$ in (10.45). Consider first the determinant of $T(z)$,
$$
\De=t_{11}t_{22}-t_{12}t_{21} = 1-h^{2}_{0} + \frac{h^{2}_{1}}{N^{2}}.
$$
>From (10.51) and (10.43),
$$
1-h_0^{2} = 1-\frac{(a^0_{12})^2}{(\mu-a_{11})^2}
={\mu^2-2\mu a_{11}+a_{11}^2-(a^0_{12})^2\over (\mu-a_{11})^2}
={2\mu^2-2\mu a_{11}\over (\mu-a_{11})^2}={2\mu\over \mu-a_{11}}\,.
\eqno (10.57)
$$
This implies  that
there exist positive constants, $c_{0} = c_0(t,g,\lambda )$
and  $C_{0} = C_0(t,g,\lambda )$, such that
$$
c_{0}\frac{1+|z|^{2}}{|z^{2}-z^{2}_{1}|^{1/2}|z^{2}-z^{2}_{2}|^{1/2}}
\leq \frac{1}{|1-h^{2}_{0}(z)|}\leq C_{0}
\frac{1+|z|^{2}}{|z^{2}-z^{2}_{1}|^{1/2}|z^{2}-z^{2}_{2}|^{1/2}}, 
\eqno (10.58)
$$
for all $z\in \C\setminus\bigl([-z_{2},-z_{1}]\cup [z_{1},z_{2}]\bigr).$
Observe that $\mu(z) - a_{11}(z) \neq 0,\quad \forall z\neq 0$.
The two-sided inequality (10.58), in turn, implies that, given $\rho > 0$,
there  exist positive constants, $c = c(t,g,\lambda , \rho )$
and  $C = C(t,g,\lambda, \rho )$, such that,
$$
c\leq \frac{1}{|1-h^{2}_{0}(z)|}\leq C,
\qquad
\forall z
\in \C\setminus\bigl([-z_{2},-z_{1}]\cup [z_{1},z_{2}]\bigr), \quad
|z\pm z_{1,2}|\geq \rho . 
\eqno (10.59)
$$
The estimates (10.59), (10.55), and the equation
$$
{\De}^{-1} = \frac{1}{1-h^{2}_{0}(z)}\left (1
+ \frac{h^{2}_{1}}{N^{2}(1-h^{2}_{0})}\right )^{-1},
\eqno (10.60)
$$
imply that, 
$$
{\De}^{-1}(z) = \frac{1}{1-h^{2}_{0}(z)}+  O \left
(\frac{|z|^{2}}{N^{2}(1+|z|^{8})}\right ),\qquad N\rightarrow \infty, 
\eqno (10.61)
$$
uniformly for $z\in \C \setminus\bigl([-z_{2},-z_{1}]\cup
[z_{1},z_{2}]\bigr),  \quad 
 |z\pm z_{1,2}|\geq \rho.$

We are ready now to formulate a principal analytical 
statement concerning the matrix $B(z)$, which is a direct
consequence of the Proposition 10.2 and the equations (10.46), (10.61):

{\bf{Lemma 10.2.}} {\it{Let the matrix $T(z)$ be chosen as in
(10.56) and let  
$$
\Om_{\rho} =\left \{z\in \C \setminus \bigl(\,[-z_{2},-z_{1}]\cup
[z_{1},z_{2}]\,\bigr)\: 
|z\pm z_{1,2}|\geq \rho >0\right \}.
$$
Then there exist positive constants $N_{0}=N_{0}(t,g,\lambda, \rho )$
and $C=C(t,g,\lambda, \rho )$
such that 

{\bf{(a)}} the matrix function $B(z)$ in (10.45) is holomorphic in $\Om_{\rho}$
for all $N\geq N_{0}$,

{\bf{(b)}} for all $N\geq N_{0}$ and $z\in \Om_{\rho}$, 
the following inequalities take place:
$$
\eqalign{
&\left | b_{jj}-(-1)^{j}\mu-{h_0'h_0\over (1-h_0^2)N}\right | < 
\frac{C|z|}{N^2(1+|z|^{4})},\quad j=1,2,\cr
&|b_{jk}|< 
\frac{C}{N^2(1+|z|^{4})},\quad j\neq k;\quad j,k = 1,2,\cr}
$$
where $\mu$ is given by the equations (10.35) or (10.43).}}
\vskip .2in


Lemma 10.2 allows us to represent $B(z)$ as  
$$
B(z) = -\mu \sigma_{3} +{h_0'h_0\over (1-h_0^2)N}+ R(z),
\eqno (10.62)
$$
where the matrix-valued function $R(z)$ is holomorphic in $\Om_{\rho}$ 
for all $N>N_{0}$, and it satisfies the estimate
$$
|R(z)| \leq \frac{C(1+|z|)}{N^2(1+|z|^{4})},\qquad z\in \Om_{\rho},
\quad  N>N_{0}.
\eqno (10.63)
$$

The representation (10.62) suggests the following formula for the
WKB-solution of the system (10.45):
$$
\Phi (z) =
\frac{1}{\sqrt{1-h^{2}_{0}(z)}}\chi(z)e^{-N\int_{z^{0}}^{z}\mu(u)du 
\sigma_{3}},
\eqno (10.64)
$$
where the matrix-valued function $\chi(z)$ is looked for as a solution of
the integral equation,
$$
\chi(z) = I - N\int_{\g(z)}e^{N\int_{z}^{\eta}\mu(u)du\sigma_{3}}
R(\eta)\chi(\eta)e^{-N\int_{z}^{\eta}\mu(u)du\sigma_{3}}d\eta.
\eqno (10.65)
$$
Here, $\g(z) = \{\g_{lk}(z)\}_{l,k=1,2}$ is a matrix of the {\it canonical
paths}, which are defined (cf. [Fed]) by the conditions:

{\it$\{i\}$}. Each $\g_{lk}$ is a simple contour starting at $z$ and
ending at $\infty$.

{\it$\{ii\}$}. Re$\int_{z}^{\eta}\mu(u)du$ strictly decreases
(increases) as $\eta$ goes
from $z$ to $\infty$ along $\g_{12}(z)$ ($\g_{21}(z)$, respectively).

The matrix equation (10.65) should be understood as the system of four
scalar equations:
$$
\chi_{lk}(z) = \delta_{lk} - N\int_{\g_{lk}(z)}e^{2(k-l)N\int_{z}^{\eta}
\mu(u)du}\left (R(\eta)\chi(\eta)\right )_{lk}d\eta,\quad l,k = 1,2.
\eqno (10.65')
$$ 
Let $D_{j}$ be one of the canonical domains and $K\subset D_{j},
\quad \text{dist}\,\{K,\partial D_{j}\}>0$ be a closed set, as in the
formulation of the 
theorem. Being a canonical
domain means exactly (cf. [Fed]) that for each $z\in D_{j}$ there
exists a matrix 
$\g(z)$ of the indicated above canonical paths, such that:

(a)  $ \g_{lk}(z) \subset D_{j}\, , \, \forall\, l,k$,

(b)  for any two points $z, z' \in D_{j}$, the following equation
takes place: 
$$
\g_{l,k}(z) - \g_{l,k}(z') + [z', z] = \partial \Omega_{l,k}(z, z'),
$$
for some bounded $ \Omega_{l,k}(z, z')\subset D_{j} $. In other words,
any two $\g_{l,k}(z), \g_{l,k}(z')$ have the same infinite part.  

Notice also that without loss of
generality we may assume that the closed set $K$ satisfies the
following conditions:

(1) $K$ contains in its interior an infinite
part of the Stokes line $\g_{j}$.

(2) $\g_{lk}(z) \subset K, \quad \forall z\in K$ and $\forall\, l,k = 1,2 $.

(3) $K\subset \Om_{\rho}$ for a sufficiently small $\rho$.


Due to the conditions (2), (3), the condition {\it $\{ii\}$} on the
canonical paths, and the properties (a), (b) of a canonical domain, the
integral operator in (10.65) is well-defined 
on the Banach space of holomorphic and bounded in $K$ matrix-valued
functions. 
In addition, due to the estimate (10.63) and, again, the property
{\it $\{ii\}$} of the canonical paths, there exists a positive
constant $N_{0} = N_{0}(t,g,\lambda,K)$ such that the $C(K)$-norm of the
integral
operator (10.65) can be estimated by a positive number $\tau <1$ for all
$N>N_{0}$. This, in turn, means that there exists a solution $\chi_{j}(z)$
 of the equation (10.65),
which is holomorphic in $D_j$ and  uniformly bounded in every closed
set $K\subset D_j$:
$$
|\chi_{j}(z)|\leq M=M(t,g,\lambda,K),\qquad z\in K,\quad N\geq N_{0}.
$$

The last estimate can be easily improved by using the equation (10.65) as
an integral {\it representation} for the holomorphic matrix-valued
function $\chi_{j}(z)$. In 
fact,  taking again into account (10.63) we conclude that
$$
\chi_{j}(z) =I + O\left ({1\over{N(1+|z|^{2})}}\right ),
\eqno (10.66)
$$
uniformly on $K$.

Let us now define the function $\Psi_{j,K}^{\WKB}(z)$ by the equation
$$
\Psi_{j,K}^{\WKB}(z) = T_{0}(z)\chi_{j}(z)e^{-N\int_{z_{k_{(j)}}}^{z}\mu(u)du
\sigma_{3}}, \qquad z\in K,\quad N\geq N_{0},
\eqno (10.67)
$$
where $T_{0}(z)$ is the matrix indicated in (10.39). Due to
(10.51) and (10.57) we have that
$$ 
T_{0}(z) = (1-h^{2}_{0}(z))^{-1/2}T(z).
$$
Hence, the function $\Psi_{j,K}^{\WKB}(z)$
(see eqs. (10.64), (10.45) )
satisfies the equation (10.1) for $z\in K$ and $N\geq N_{0}$. In addition,
it has a universal (independent on $K$ and $N_{0}$) behaviour as
$z\rightarrow \infty \, ,\, z\in K$. Indeed, for the 
function $\xi(z)$ in (10.40-42)
we have that, as $z\rightarrow \infty$,
$$
\xi(z) = {g\over 8}z^{4} + {t\over 4}z^{2} -\lambda \ln z 
+ C_{n} + O\left ({1\over z^{2}}\right ) = \frac{V(z)}{2} -
\lambda \ln z  + C_{n} + O\left ({1\over z^{2}}\right ) ,
\eqno (10.68)
$$
where
$$
C_{n} = \frac{t^{2}}{8g}-{\lambda \over 4}\ln {g\over \lambda } -
{\lambda \over 4}.
$$
Simultaneously, from (10.43) we have that 
$$
\mu(z) = z^{3}{g\over 2} +  z{t\over 2} + 
 O\left ({1\over z}\right ).
\eqno (10.69)
$$
Taking into account the equations (10.40-42) and (10.39), we derive from
the estimates (10.68), (10.69), and (10.66)
that, for any $N>N_{0}$, the following
asymptotic equation takes place:
$$
\Psi_{j,K}^{\WKB}(z) = \left \{
\pmatrix
1 & 0 \\
0 & 1 
\endpmatrix
+ {1\over z}
\pmatrix
0 & R_{n}^{1/2} \\
R_{n}^{1/2} & 0 
\endpmatrix
+O\left ({1\over z^{2}}\right )\right \}e^{-\left (N{V(z)\over 2} -n\ln z +
NC^{j}_{n}\right )\sg_{3}},
\eqno (10.70)
$$
as $z\rightarrow \infty,\qquad z\in K.$ In (10.70) we use the
notations 
$$\eqalignno{
C^{1,2}_{n} &= C_{n},\qquad C^{5,6}_{n} = C_{n} + i\lambda \pi,
& (10.71)\cr
C^{3,4}_{n} &= C_{n} + i\lambda {\pi \over 2},
& (10.72)\cr
C^{7,8}_{n} &= C_{n} - i\lambda {\pi \over 2}.
& (10.73)\cr}
$$
\vskip .2in

To complete the proof of the theorem we now define
$\Psi_{j}^{\WKB}(z)$ as a {\it{unique}} solution of equation (10.1)
satisfying the same asymptotic condition at $z\rightarrow \infty$ as 
in (10.70):
$$
\Psi_{j}^{\WKB}(z)e^{\left (N{V(z)\over 2} -n\ln z +
NC^{j}_{n}\right )\sg_{3}} \rightarrow I,
$$
as
$$
z\rightarrow \infty,\qquad z\in D_{j}.
$$
Since $K$ contains an infinite part of the Stokes line $\g_{j}$ (see
the condition 
(1) above), and due to the uniqueness theorem, the functions 
$\Psi_{j}^{\WKB}(z)$ and $\Psi_{j,K}^{\WKB}(z)$ should coincide
for $z\in K$ and $N>N_{0}$:
$$
\Psi_{j}^{\WKB}(z) = \Psi_{j,K}^{\WKB}(z) = 
T_{0}(z)\chi_{j}(z)e^{-N\int_{z_{k_{(j)}}}^{z}\mu(u)du
\sigma_{3}}, \qquad z\in K,\quad N\geq N_{0}.
\eqno (10.74)
$$
the estimate (10.38) for the function $\Psi_{j}^{\WKB}(z)$ follows from
(10.74) and (10.66). This completes the proof of the
Theorem 10.2  for $n$ even. The case of $n$ odd is treated similarly.

{\it{Remark 10.2.}} Comparing to the general isomonodromy WKB-scheme
developed in [Kap], the presented above analysis of a {\it{
particular system (10.1), (10.32)}} has an important
advantage. In spite of the fact that $z=0$ is a double turning
point of the system (10.1),  the matrix remainder $R(z)$ is analytic at $z=0$.
This means that the WKB-asymptotics (10.38) is actually valid
up to the point $z=0$. More precisely, for $j=3,4,7$, and 8, the condition
$$
K\subset D_{j}, \quad  \text {dist}\,\{K, \partial D_{j}\}>0,
$$
on the closed set $K$
can be replaced by a weaker condition,
$$
K\subset D_{j}\cup \left (\{z: |z|\leq z_{1}\}
\cap \bar D_{j}\right ), 
\quad  \text {dist}\,\{K, \partial D_{j} - 
\g^{0}_{k(j)} \cup [0,z_{1})\}>0,
$$
for $j=3,8$, where $k(3) = 4, \; k(8) = 7,$ and
$$
K\subset D_{j}\cup \left (\{z: |z|\leq z_{1}\}
\cap \bar D_{j}\right ),
 \quad  \text {dist}\,\{K, \partial D_{j} - 
(-z_{1},0\,]\cup \g^{0}_{k(j)}\}>0,
$$
for $j=4,7$, where $k(4) = 3, \; k(7) = 8.$ 
It is worth emphasizing that the analyticity of $R(z)$ at $z=0$ is the
result of using the exact terms of the order of $N^{-1}$ in the ansatz
(10.32) for the quantities $R_{n\pm 1}$.

{\it{Remark 10.3.}} The condition Dist$\,\{K,\d D_j\}$ on the closed
domain $K$ can be weakened to
$$
\text{dist}\, \bigl\{K,\partial D_{j}\setminus\bigl(\, \g^{0}_{3}\cup
\g^{0}_{4} 
\cup \g^{0}_{7}\cup \g^{0}_{8}\cup (-z_{1},z_{1})\,\bigr)\bigr\}
>cN^{-4+\ep}, \quad c,\ep>0.
$$
This weaker condition secures the existence of a WKB solution of the
equation (10.1), with a somewhat weaker than in (10.38) estimate of
the error term. 
 
The analyticity of the matrix
$R(z)$, defined in (10.62),  at $z=0$ enables us to use the same
equation (10.45) to construct a {\it{ local}} solution of the system
(10.1) near the double turning point $z=0$. Indeed, due to Proposition
10.2 
there exists a positive number $\rho_{0} = \rho_{0}(t,g,\lambda )<
z_{1}$  such that $R(z)$ is holomorphic in the disk
$$
U_{0} = \{z\in \C: |z|< \rho_{0}\},
\eqno (10.75)
$$
and it satisfies there the uniform estimate
$$
|R(z)| \leq \frac{C}{N^{2}},\qquad z\in U_{0}, \quad C=C(t,g,\lambda ).
\eqno (10. 76)
$$
Assuming $z\in U_{0}$, let us define the function
$$ 
\Psi^{\TP}_{0}(z) =
T_{0}(z)\chi_{0}(z)e^{-N\int_{0}^{z}\mu(u)du\sigma_{3}}, 
$$
where, instead of (10.65), $\chi_{0}(z)$ is a solution of the Volterra
integral equation
$$
\chi_{0}(z) = I + N\int^{z}_{0}e^{N\int_{z}^{\eta}\mu(u)du\sigma_{3}}
R(\eta)\chi_{0}(\eta)e^{-N\int_{z}^{\eta}\mu(u)du\sigma_{3}}d\eta.
$$

By similar considerations we prove that the matrix function
$\chi_{0}(z)$ exists, it is holomorphic in $U_{0}$,
and it satisfies the estimate
$$ 
|\chi_{0}(z) - I|\leq e^{\sigma(z)} -1, \quad \sigma(z) = CN\int_{0}^{z}
|R(\eta)|d\eta,
\eqno (10.77)
$$
in the star-shaped region
$$
W_{0} = \{z\in U_{0}:|N\,\Re \int_{0}^{z}\mu(u)du|\leq \text{const}\},
\eqno (10.78)
$$
which is depicted in Fig.5.
\vskip .4in
\psdump{p5.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig010313
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Thu Nov 21 12:58:10 1996
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 258 321 353 470
%%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
 /DrawEllipse {
        /endangle exch def
        /startangle exch def
        /yrad exch def
        /xrad exch def
        /y exch def
        /x exch def
        /savematrix mtrx currentmatrix def
        x y translate xrad yrad scale 0 0 1 startangle endangle arc
        savematrix setmatrix
        } def

        end
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
%%EndProlog

$F2psBegin
0 setlinecap 0 setlinejoin
75.5 589.5 translate 0.630 -0.630 scale
0.500 setlinewidth
        [4.000000] 0 setdash
n 322.611 204.833 82.613 63.866 9.874 arcn
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 389.109 349.543 76.700 -113.114 -168.308 arcn
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 426.500 181.500 118.585 124.695 161.565 arc
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 318.643 357.929 88.648 -62.919 -15.660 arc
gs col-1 s gr
        [] 0 setdash
n 257.145 276.258 66.893 -39.177 45.537 arc
gs col-1 s gr
n 359.163 224.217 35.164 -179.646 7.818 arcn
gs col-1 s gr
n 359.000 334.000 35.000 180.000 0.000 arc
gs col-1 s gr
n 439.000 279.000 50.000 -126.870 126.870 arcn
gs col-1 s gr
        [4.000000] 0 setdash
% Ellipse
n 359 279 65 65 0 360 DrawEllipse gs col-1 s gr
        [] 0 setdash
/Times-Roman findfont 15.00 scalefont setfont
359 294 m 
gs 1 -1 scale (0) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
409 349 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
414 359 m 
gs 1 -1 scale (8) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
309 209 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
399 209 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
409 214 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
289 349 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
299 359 m 
gs 1 -1 scale (7) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
319 214 m 
gs 1 -1 scale (4) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
314 204 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
404 204 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
294 344 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
414 344 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
349 419 m 
gs 1 -1 scale (The region ) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
419 419 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
434 424 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
299 419 m 
gs 1 -1 scale (Fig. 5.) col-1 show gr
showpage
$F2psEnd

EndOfTheIncludedPostscriptMagicCookie
\closepsdump
\ce {\psbox{p5.ps}}
\vskip .4in
The positive constant $C$ in (10.77) depends on $W_{0}$ only. From
(10.77) and (10.76) it follows that
$$
\chi_{0}(z) = I + O\left ({1\over N}\right ),
$$
as $N\rightarrow \infty$, uniformly in $z\in W_{0}$. Hence we
have the following result.

{\bf{Theorem 10.3.}} {\it{Let  $U_{0}$ and $W_{0}$ be the disk and the
 star-shaped region defined by the equations (10.75) and (10.78),
respectively. Assume that the quantities $R_{n-1},\;R_n$ and $R_{n+1}$
are defined as in (10.32).
Then, there exists a turning point solution $\Psi_{0}^{\TP}(z)$ of 
the equation (10.1),
which is holomorphic in $U_{0}$ and satisfies, under the conditions (10.33),
the following asymptotic equation:
$$
\Psi^{\TP}_{0}(z) = T_{0}(z)\left \{I + O\left (
\frac{1}{N}\right ) \right \}
e^{-N\int_{0}^{z}\mu(u)du\sigma_{3}},
\eqno (10.79)
$$
where, for even $n$, $T_{0}(z)$ and $\mu(z)$ are the same as in
Theorem 10.2. For odd $n$, one should replace $T_{0}(z)$ by the
matrix,
$$
T_{0}^{\text{\rm odd}}(z) =\sqrt {\frac{\mu + a_{11}}{2\mu}}
\pmatrix
-\frac{a^{0}_{12}}{\mu + a_{11}} & 1 \\
1 & -\frac{a^{0}_{12}}{\mu + a_{11}}
\endpmatrix.
$$
The asymptotics (10.79) is uniform in $z\in W_{0}$.}}

Note, that for odd $n$ we have that
$$
T_{0}(z)= \mp iT_{0}^{\text{\rm odd}}(z),\qquad z\in U_{0}\cap 
\{\pm \Im z > 0\}.
$$
\vskip .1in

Our {\bf{second step}} is a semiclassical analysis of
the equation (10.1) 
near the turning points $\pm z_{1,2}$, where the
WKB formulae (10.38) do not work (see Remark 10.3).
The points $\pm z_{1,2}$
are simple turning points of the equation (i.e., the simple roots
of $\mu^{2}(z)$). Due to the symmetry
$z\to -z $, it is enough to consider the points $z_{1}, z_{2}$ only. 

Let  $z_k,\; k=1$ or 2, is one of the simple turning points under
consideration. Following [Kap] (see also [Ble] and  the
semiclassical analysis performed in the section 8 above), consider the
analytic change  
of the variable $z$, in some neighborhood of the point $z_{k}$, given
by  the equation 
$$
z\to w_{k} = \left ({3\over 2}\,
\int^{z}_{z^{N}_{k}}\nu(z)dz\right )^{2\over 3},
\qquad k = 1, 2,
\eqno (10.80)
$$
where
$$\eqalign{
\nu^{2} &= -\det A +{1\over N}\left (a_{11}' - a_{11}{a_{12}'\over a_{12}}
\right ) -
{1\over 2N^{2}}\left [{a_{12}''\over a_{12}} -{3\over 2}
\left ({a_{12}'\over a_{12}}\right )^{2}\right ]\cr
&=\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}
$$
and the point $z^{N}_{k}$ is determined by the conditions
$$
\nu^{2}(z^{N}_{k}) = 0,\qquad z^{N}_{k}- z_{k} = O\left(N^{-1}\right).
$$
Observe that $\nu^2$ is nothing else than the potential $U(z)$ in the
Schr\"odinger equation (3.26) [cf. (3.27)], and $w_{k}$ is just the zeroth
order approximation of the function $\phi(z)$ in (8.1). In fact,
as in the section 7 above, 
we can neglect terms of the order of $N^{-2}$ in $\nu^2$ and put
$$
\nu^2(z)=\left[{g^2z^6\over 4}+{tgz^4\over 2}+\left(
{t^2\over 4}-{n\over N}g\right)z^2\right]+{1\over N}\left ({t\over 2}
+gR_{n} -{gz^{2}\over 2}\right ).
\eqno (10.81)
$$
The rigorous justification of this cuttof follows immediately
from Theorem 10.4 below.

Since,
$$
w_{k}'(z) = {\nu(z)\over w_{k}^{1/2}(z)} \to  \text {const}\, \neq 0\qquad
 \text {as}\quad z\to z^{N}_{k},
$$
each branch of the multivalued function
(10.80) indeed defines (for sufficiently large $N$)
a nonsingular holomorphic change
of variable in some {\it{finite}} disk
$$
U_{k} = \left\{z\in \C: |z-z_{k}^{N}| < \rho_{k} \right \},
\eqno (10.82)
$$
where $\rho_{k}$ satisfy the inequalities
$$
0<\rho_{1}  < \text {min}\, \{ z_{1}, 
z_{2} - z_{1}\}, \quad 0 < \rho_{2} <  z_{2} - z_{1}.
$$
We shall fix the branch of $w_{k}(z)$ by the  equation
$$
w_{k}(z) =e^{{i\pi \over 3}(2-k)}z_{k}(4g^{3}\la)^{1/6}(z-z_{k}) + O\left
(N^{-1}+|z-z_k|^2\right ) ,\qquad  z\to z_{k},\; N\to \infty.
\eqno (10. 83)
$$
Supplementing the change of variable $z\to w_{k}$ by the gauge
transformation (see [Kap])
$$
\Psi(z) = V_{k}(z)\Phi(w_{k}(z)),
$$
where
$$
V_{k}(z)=
\pmatrix
\sqrt{a_{12}\over w_{k}'} & 0 \\
-{1\over \sqrt{w_{k}'a_{12}}}\left [a_{11} - {1\over 2N}\left ({a_{12}'
\over a_{12}} - {w_{k}''\over w_{k}'}\right )\right ] & \sqrt
{w_{k}'\over a_{12}} 
\endpmatrix,
\eqno (10.84)
$$
we bring the equation (10.1) to the form
$$
{d\over dw}\Phi(w) = \left \{N
\pmatrix
0 & 1 \\
w & 0
\endpmatrix
+ O \left ({1\over N}\right ) \right \}\Phi(w), \quad w\equiv  w_{k},
$$
so that we can approximate it in the neighborhood
$U_{k}$ by the model equation
$$
{d\over dw}\Phi_{0}(w) = N
\pmatrix
0 & 1 \\
w & 0
\endpmatrix
\Phi_{0}(w), \quad w\equiv  w_{k}.
\eqno (10.85)
$$
The latter can be solved in terms of the Airy or
Bessel functions. We shall choose the fundamental solution of (10.85)
in the form
$$
\Phi_{0}(w) = N^{{1\over 6}\sg_{3}}
\pmatrix
y_{1}(N^{2/3}w) & y_{2}(N^{2/3}w) \\
y'_{1}(N^{2/3}w) & y'_{2}(N^{2/3}w)
\endpmatrix
\eqno (10.86)
$$
where $(') ={d\over d\zeta}$ and
$$
y_{1,2}(\zeta) = \zeta ^{1/2}H_{1/3}^{(1,2)}\left({2i\over
3}\,{\zeta}^{3/2}\right), 
\qquad i = e^{-{3i\pi \over 2}},
$$
or in terms of the Airy function,
$$
y_k(\z)=2\sqrt 3\left[ (-1)^{k-1}\Ai(\z)+(k-1)\Ai(\z e^{2\pi
i/3})\,e^{-2\pi i/3}\right]\,, \qquad k=1,2.
$$

The corresponding rigorous statement can be formulated
as follows (see [Kap]). 

{\bf{Theorem 10.4.}} {\it Let $w_{k}(z), V_{k}(z)$, and $ \Phi_{0}(w)$
be given
by (10.80,81), (10.84), and (10.86), respectively. Assume that the
quantities $R_{n-1},\;R_n$ and $R_{n+1}$ are defined as in
(10.32). Then, in each disk 
$U_{k}, k= 1,2$, there exists a {\it{turning point solution}} 
$\Psi^{\TP}_{k}(z)$ of the
equation (10.1), 
which satisfies, under the 
conditions (10.33), the estimate
$$
\Psi^{\TP}_{k}(z) = V_{k}(z)\left (I + O(N^{-1})\right )\Phi_{0}(w_{k}(z)),
\eqno (10.87)
$$
uniformly in the star-shaped region 
$$
 W_{k} = \left \{z\in U_{k}: |\text {\rm Re}\,Nw_{k}^{3/2}(z)|\leq
\text {\rm const}\right \},
\eqno (10.88)
$$}

The region $W_{k}$ for $k=1$ is depicted in Fig.6.
\vskip .4in
\psdump{p6.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig010319
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Thu Nov 21 13:01:29 1996
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 224 276 387 515
%%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
 /DrawEllipse {
        /endangle exch def
        /startangle exch def
        /yrad exch def
        /xrad exch def
        /y exch def
        /x exch def
        /savematrix mtrx currentmatrix def
        x y translate xrad yrad scale 0 0 1 startangle endangle arc
        savematrix setmatrix
        } def

        end
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
%%EndProlog

$F2psBegin
0 setlinecap 0 setlinejoin
94.5 607.5 translate 0.630 -0.630 scale
0.500 setlinewidth
        [4.000000] 0 setdash
n 479.000 119.000 228.035 164.745 127.875 arcn
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 543.329 517.476 302.573 -133.775 -160.002 arcn
gs col-1 s gr
        [] 0 setdash
n 113.583 299.000 165.417 -35.051 35.051 arc
gs col-1 s gr
n 453.947 72.223 211.837 148.153 88.633 arcn
gs col-1 s gr
n 450.250 510.250 196.445 -150.662 -87.447 arc
gs col-1 s gr
        [4.000000] 0 setdash
% Ellipse
n 334 299 74 74 0 360 DrawEllipse gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
% Ellipse
n 334 299 128 128 0 360 DrawEllipse gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
% Polyline
n 339 299 m 464 299 l  459 299 l gs col-1 s gr
        [] 0 setdash
/Times-Roman findfont 15.00 scalefont setfont
279 219 m 
gs 1 -1 scale (L) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
279 384 m 
gs 1 -1 scale (L) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
289 389 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
289 224 m 
gs 1 -1 scale (+) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
254 164 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
249 424 m 
gs 1 -1 scale (g) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
264 174 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
259 434 m 
gs 1 -1 scale (8) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
319 519 m 
gs 1 -1 scale (The region ) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
389 519 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
404 524 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
334 319 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
339 324 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
274 519 m 
gs 1 -1 scale (Fig. 6.) col-1 show gr
showpage
$F2psEnd

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



{\it {Remark 10.4.}} One can also construct the {\it{canonical}}
turning point solutions $\Psi_{k,l}^{\TP}(z),\;$ $l = 1,2,3$, which are
specified by the  asymptotic equations
$$
\Psi_{k,l}^{\TP}(z) = V_{k}(z)\left (I + O(N^{-1})\right
)\Phi_{0,l}(w_{k}(z)) 
\sigma_{k,l},\qquad N\to\infty,
\eqno (10.89)
$$
where
$$
\sigma_{1,1} = \sigma _{1},\quad  \sigma_{k,l} = I,\, (k,l) \neq (1,1),
$$
and
$$
z\in W_{k,l} = \left \{z\in U_{k}: {{2\pi}\over 3}\left(l-{5\over
2}\right) +\ep 
<\arg w_{k}(z) < {{2\pi}\over 3}\left(l-{1\over 2}\right) -\ep \right
\},\quad l=1,2,3. 
$$
The turning point domains $W_{k,l}$ are depicted in Fig.7.
\vskip .4in
\psdump{p7.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig010334
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Thu Nov 21 14:34:15 1996
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 185 270 427 522
%%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
122.0 601.0 translate 0.630 -0.630 scale
0.500 setlinewidth
n 179.833 138.167 45.840 117.031 178.959 arc
gs col-1 s gr
n 304.000 129.000 55.902 116.565 169.695 arc
gs col-1 s gr
n 324.000 244.000 79.057 -124.695 -161.565 arcn
gs col-1 s gr
n 274.000 176.500 45.069 -123.690 3.180 arc
gs col-1 s gr
n 274.000 181.500 45.069 123.690 -3.180 arcn
gs col-1 s gr
n 476.500 236.500 68.648 -123.111 -169.509 arcn
gs col-1 s gr
n 114.000 314.000 79.057 55.305 18.435 arcn
gs col-1 s gr
n 241.500 436.500 68.648 -56.889 -10.491 arc
gs col-1 s gr
n 292.816 377.816 44.250 68.547 -81.967 arcn
gs col-1 s gr
n 287.971 381.794 49.050 -77.006 -176.735 arcn
gs col-1 s gr
n 427.214 338.643 42.043 73.720 -6.340 arcn
gs col-1 s gr
n 394.000 444.000 79.057 -55.305 -18.435 arc
gs col-1 s gr
n 442.604 372.539 44.080 -60.962 171.572 arcn
gs col-1 s gr
n 448.210 379.395 49.212 -179.540 65.010 arcn
gs col-1 s gr
        [4.000000] 0 setdash
n 86.500 471.500 117.527 -51.911 -29.291 arc
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 234.000 314.000 79.057 55.305 18.435 arcn
gs col-1 s gr
        [] 0 setdash
n 172.243 382.818 46.913 -69.072 100.120 arc
gs col-1 s gr
n 165.072 382.786 46.227 -175.302 91.329 arcn
gs col-1 s gr
n 426.759 180.121 52.253 -1.229 -136.270 arcn
gs col-1 s gr
n 425.875 177.281 49.673 -137.933 109.860 arcn
gs col-1 s gr
n 156.763 190.184 56.017 -113.976 160.373 arcn
gs col-1 s gr
n 148.133 183.337 51.052 149.822 -4.873 arcn
gs col-1 s gr
        [4.000000] 0 setdash
n 183.167 223.167 50.346 -118.686 167.575 arcn
gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
n 475.711 129.132 61.923 126.359 -175.246 arc
gs col-1 s gr
        [] 0 setdash
% Polyline
n 159 179 m 199 179 l gs col-1 s gr
% Polyline
n 439 179 m 479 179 l gs col-1 s gr
% Polyline
n 119 379 m 159 379 l gs col-1 s gr
% Polyline
n 239 379 m 279 379 l gs col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 399 379 m 439 379 l gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
% Polyline
n 279 179 m 319 179 l gs col-1 s gr
        [] 0 setdash
/Times-Roman findfont 15.00 scalefont setfont
154 459 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
454 459 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
294 459 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
169 464 m 
gs 1 -1 scale (2,1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
309 464 m 
gs 1 -1 scale (2,2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
469 464 m 
gs 1 -1 scale (2,3) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
159 169 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
144 369 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
459 384 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
164 174 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
149 374 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
464 389 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
164 164 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
279 169 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
284 174 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
284 164 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
439 199 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
444 194 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
444 204 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
149 364 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
464 379 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
269 399 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 404 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
274 394 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
219 519 m 
gs 1 -1 scale (The canonical Turning Point Domains) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
449 519 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
464 524 m 
gs 1 -1 scale (k,l) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
139 269 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
154 274 m 
gs 1 -1 scale (1,1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
274 269 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
289 274 m 
gs 1 -1 scale (1,2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
419 269 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
434 274 m 
gs 1 -1 scale (1,3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
174 519 m 
gs 1 -1 scale (Fig. 7.) col-1 show gr
showpage
$F2psEnd

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


The canonical solutions $\Phi_{0,l}(w),\; l=1,2,3$, of the model system
(10.85) 
are given by the same formula (10.86) as for $\Phi_{0}(w)$ but with a
different choice of the fundamental Airy functions $y_{1,2}(\zeta)$.
We choose $y_{1,2}(\zeta) \equiv y^{(l)}_{1,2}(\zeta) $ in such a way
that the asymptotics
$$
\Phi_{0,l}(w) = w^{-{1\over 4}\sg_{3}}
\pmatrix
1 & 1 \\
-1 & 1
\endpmatrix
\left (I+O(N^{-1})\right )e^{-{2\over 3}Nw^{3/2}\sg_{3}}
\eqno (10.90)
$$
takes place when
$$
Nw^{3/2} \to \infty,\qquad
{{2\pi}\over 3}\left(l-{5\over 2}\right) +\ep
<\arg w < {{2\pi}\over 3}\left(l-{1\over 2}\right) -\ep,\quad
l=1,2,3.
$$
In fact,
$$\eqalign{
\Phi_{0,1}(w) &= \sqrt{\frac{\pi}{3}}\,\Phi_{0}(w)
\pmatrix
e^{-i\frac{\pi}{3}} & e^{i\frac{\pi}{6}} \\
-e^{i\frac{\pi}{3}} & 0
\endpmatrix,\cr
\Phi_{0,2}(w) &= \sqrt{\frac{\pi}{3}}\,\Phi_{0}(w)
\pmatrix
e^{-i\frac{\pi}{3}} & 0 \\
-e^{i\frac{\pi}{3}} & -e^{-i\frac{\pi}{6}}
\endpmatrix,\cr
\Phi_{0,3}(w) &= \sqrt{\frac{\pi}{3}}\,\Phi_{0}(w)
\pmatrix
e^{-i\frac{\pi}{3}} & 0 \\
0 & -e^{-i\frac{\pi}{6}}
\endpmatrix.\cr}
\eqno (10.91)
$$

\vskip .2in
We are ready now to proceed with the {\bf{final step}} in the asymptotic
solution of the direct monodromy problem under consideration:
evaluation of  the Stokes matrices $\{S_{j}\}$ corresponding
to the equation (10.1).
According to the general scheme presented at the beginning of this section,
we only  need to calculate the Stokes parameters $s_{2}$, $s_{3}$ and
to choose 
the normalization parameter $\la_{n}$ in such a way that the equation
(10.10) for the 
Stokes multiplier $s_{1}$ holds. To that end, it is convenient to evaluate
the Stokes matrices between the canonical solutions $\Psi_{3}$,
$\Psi_{4}$, and $\Psi_{8}$. Indeed, if we managed to evaluate
the (constant in $z$ !) matrix
$$\eqalign{
Q &= \Psi^{-1}_{3}(z)\Psi_{8}(z) = S^{-1}_{2}S^{-1}_{1}S^{-1}_{8} =
\pmatrix
1-s_{1}s_{4} & -s_{1} \\
s_{4}-s_{2} +s_{1}s_{2}s_{4} & 1+s_{1}s_{2}
\endpmatrix\cr
&=
\pmatrix
1+2\pi i\bar s_{2} & 2\pi i \\
\bar s_{2}-s_{2} -2\pi i|s_{2}| & 1-2\pi is_{2}
\endpmatrix\cr}
\eqno (10.92)
$$
then we would know the parameter $s_{2}$. Similarly, if we evaluated
the matrix
$$
S_{3} =  \Psi^{-1}_{3}(z)\Psi_{4}(z)=
\pmatrix
1 & s_{3} \\
0 & 1
\endpmatrix,
\eqno (10.93)
$$
we would get the parameter $s_{3}$. Let us evaluate first the matrix $Q$.

The matrix $Q$ admits the following factorization:
$$
Q = \Lambda^{-1}_{3}\Pi_{3}\Pi^{-1}_{8}\Lambda_{8}
\eqno (10.94)
$$
where the constant in $z$ matrices $\Lambda_{3},\; \Pi_{3},\;
\Pi_{8},$ and $ \Lambda_{8}$ are defined as
$$ \Lambda_{3,8}  = \left [\Psi_{3,8}^{\WKB}(z)\right ]^{-1}
 \Psi_{3,8}(z)
$$
and
$$ \Pi_{3,8}  = \left [\Psi_{3,8}^{\WKB}(z)\right ]^{-1}
 \Psi_{1}^{\TP}(z).
$$
Consider first the matrices $\Lambda_{3,8}$, which virtually have already
been evaluated during the proof of Theorem 10.2. Indeed, it
follows from (10.74) and (10.70) that   
$$
\Psi_{j}^{\WKB} = \left \{
\pmatrix
1 & 0 \\
0 & 1
\endpmatrix
+ {1\over z}
\pmatrix
0 & R_{n}^{1/2} \\
R_{n}^{1/2} & 0
\endpmatrix
+O\left (\frac{1}{z^{2}}\right )\right \}e^{-\left (N{V(z)\over 2} -n\ln z +
NC^{j}_{n}\right )\sg_{3}},
\eqno (10.95)
$$
as $z\to \infty,\; N\geq N_{0},$ and
$$
{\pi \over 8} +\ep < \arg z < {5\pi \over 8} -\ep,
$$
for $\Psi_{3}^{\WKB}$, and
$$
-{5\pi \over 8} +\ep < \arg z < -{\pi \over 8} -\ep,
$$
for $\Psi_{8}^{\WKB}$. Formulae for $C^{j}_{n}$ are given in (10.72),
(10.73), and (10.68).

Comparing the asymptotics (10.95) with (10.4) and
taking into account the equation
$$
\Psi_{j}(z) = \Psi_{j}(ze^{2\pi i}),
$$
i.e., the triviality of the monodromy group of the differential
equation (10.1), we obtain the following {\it{exact}} formulae
for the matrices  $\Lambda_{3,8}$ :
$$
\Lambda_{j} = 
\pmatrix
1 & 0 \\
0 & R^{-1/2}_{n}
\endpmatrix
 e^{ (NC^{j}_{n} 
 - \la _{n})\sg_{3}},\quad j=3,8, \quad N\geq N_{0}.
\eqno (10.96)
$$
To evaluate the connection matrix $\Pi_{3}$ let us notice that for all $z$
such that
$$
{1\over 2}\rho_{1} <|z-z^{N}_{1}|< \rho_{1}, \qquad 0\leq \arg
(z-z^{N}_{1}) \leq \pi,
\eqno (10.97)
$$
the function $w_{1}(z)$ satisfies the following asymptotic equation:
$$
{2\over 3}\,Nw_{1}^{3/2}(z) = N\xi(z) +{{i\pi n}\over 2} - d(z) +ip +
q + O\left (N^{-1}\right ),
\eqno (10.98)
$$
where
$$\eqalign{
p &= {\pi \over 4}\,(1+(-1)^{n}),\cr
q &= {1\over 4}\,(-1)^{n}
\ln{{1-a +\sqrt{a^{2}-1}}\over{a-1 +\sqrt{a^{2}-1}}} \equiv 
\frac{1}{8}\ln{\frac{g}{\la}} + \frac{1}{4}\ln R_{n},\cr
d(z) &={1\over 4}\ln \frac{(x+\sqrt{x^{2}-1} + a-
(-1)^{n}\sqrt{a^{2}-1})^{2}} 
{2(x+a)}\,,\qquad
 a = -
 {t\over{2\sqrt{\la g}}}\,,\cr}
$$
and $\xi(z)$ is defined in (10.40). From
(10.98) it follows that the intersection of the half-annulus (10.97)
and the turning
point domain $W_{1}$ (see (10.88)) is not empty  and it contains (for
sufficiently large N) 
an arc of the Stokes line $\gamma_{3}$, where Re$\,\xi(z) = 0$.
We shall denote this arc by $L_{+}$ (see Fig.6).

Let us choose a closed set $K$ in such a way that $L_{+}\subset
K\subset D_{3}$. Then by 
Theorem 10.2, in $D_3$ there exists a WKB-solution
$\Psi_{3}^{\WKB}(z)$ which satisfies the asymptotics (10.38) on
$K$. Let us compare $\Psi_{3}^{\WKB}(z)$ with
$\Psi_{1}^{\TP}(z)$ on the Stokes line $\g_3$, or more precisely on 
the arc $L_{+}$.
For all $z\in L_{+}$ the Bessel functions in
(10.86) have a large argument,  and they can be replaced by their known
asymptotics. Taking into account that on $L_{+}$, $\arg \zeta^{3/2}$ is
close to ${3\pi \over 2}$
we obtain the formula
$$
\Phi_{0}(w_{1}(z))=\sqrt{3\over \pi}\, w_{1}^{-{1\over 4}\sg_{3}}
\pmatrix
1 & 1 \\
-1 & 1
\endpmatrix
\left (I+O(N^{-1})\right )e^{-{2\over 3}Nw_{1}^{3/2}}
\pmatrix
e^{i{\pi \over 3}}& 0 \\
0 & -e^{i{\pi \over 6}}
\endpmatrix
\eqno (10.99)
$$
as $N\to \infty$ and $ z\in L_{+}.$
Noticing that
$$
w_{1}' = w_{1}^{-1/2}\mu +O \left (N^{-1}\right ),
\eqno (10.100)
$$
we can rewrite  on $L_{+}$  the gauge factor (10.84) as
$$
V_{1}(z) = \sqrt{a^{0}_{12}\over \mu}\,\left [
\pmatrix
1 & 0 \\
-{a_{11}\over a^{0}_{12}} & {\mu \over a^{0}_{12}}
\endpmatrix
+O\left (N^{-1}\right ) \right ] w_{1} ^{1/4\sg_{3}},
\eqno (10.101)
$$
where
$$
a^{0}_{12} = R^{1/2}_{n}gz^{2}.
$$

The formulae  (10.99) and (10.101) yield  the asymptotic equation
$$\eqalign{
\Psi^{\TP}_{1}(z) &=
\sqrt{3a^{0}_{12}\over \pi \mu}
\pmatrix
1 & 1 \\
-{\mu +a_{11}\over a^{0}_{12}} & {\mu-a_{11} \over a^{0}_{12}}
\endpmatrix
\left \{I
+O\left (N^{-1}\right ) \right \}\cr
&\times e^{-{2\over 3}Nw_{1}^{3/2}\sg_{3}}
\pmatrix
e^{i{\pi \over 3}}& 0 \\
0 & -e^{i{\pi \over 6}}
\endpmatrix\,,\cr}
\eqno (10.102)
$$
as $N\to \infty$ and $z \in L_{+}$.
The function $d(z)$ in (10.98) can be rewritten as
$$
d(z) = {1\over 2}\ln \frac{\mu -a_{11}}{a^{0}_{12}} 
- {1\over 8}\ln \frac{\lambda}{16g}
+ {1\over 2}\ln \frac{R^{1/2}_{n}}{2},
$$
which leads to the algebraic identity,
$$\eqalign{
\sqrt{a^{0}_{12}\over \mu}
&\pmatrix
1 & 1 \\
-{\mu +a_{11}\over a^{0}_{12}} & {\mu-a_{11} \over a^{0}_{12}}
\endpmatrix
e^{d(z)\sigma_{3}} =
\sqrt {\frac{\mu - a_{11}}{2\mu}}
\pmatrix
1 & \frac{a^{0}_{12}}{\mu - a_{11}}\\
\frac{a^{0}_{12}}{\mu - a_{11}} & 1
\endpmatrix
\cr
&\times
\left (\frac{\lambda}{16g}\right )^{-\frac{\sigma_{3}}{8}}
R_{n}^{\frac{\sigma_{3}}{4}}
\pmatrix
1 & 0 \\
0 & 2
\endpmatrix = T_{0}(z)\sqrt{2}\left (\frac{\la}{g}\right )^{-\frac{\sg_{3}}{8}}
R^{\frac{\sg_{3}}{4}}_{n},\cr}
\eqno (10.103)
$$
where in the last equality we took into account (10.39) as well. The 
equations (10.103) and (10.98) allow us to rewrite the formula (10.102)
in the form
$$
\Psi^{\TP}_{1}(z) =
\sqrt{6\over \pi}T_{0}(z)
\left \{I
+O\left (N^{-1}\right ) \right \}
\,e^{\left (-N\xi -i\frac{\pi n}{2} -ip  \right ) \sg_{3}}
\pmatrix
e^{i{\pi \over 3}} & 0 \\
0 & -e^{i{\pi \over 6}}
\endpmatrix,
$$
or, in view of (10.42),
$$
\Psi^{\TP}_{1}(z) =
\sqrt{6\over \pi}T_{0}(z)
\left \{I
+O\left (N^{-1}\right ) \right \}
\, e^{\left (-N\int^{z}_{z_{k(3)}}\mu(u)du -ip  \right ) \sg_{3}}
\pmatrix
e^{i{\pi \over 3}} & 0 \\
0 & -e^{i{\pi \over 6}}
\endpmatrix,
\eqno (10.104)
$$
as $N\to \infty$ and $z \in L_{+}$.

Comparing the equation (10.104) with the WKB-formula (10.38), $j=3$,
we end up 
with the following estimate for the connection matrix $\Pi_{3}$ :
$$
\Pi_{3} = \sqrt{6\over \pi}\,
e^{-ip\sg_{3}}
\pmatrix
e^{i{\pi \over 3}}& 0 \\
0 & -e^{i{\pi \over 6}}
\endpmatrix
 + O(N^{-1}).
\eqno (10.105)
$$
The evaluation of the matrix $\Pi_{8}$ is carried out along the same
lines.
However, there are some technical yet  important differences:

(i) Because of our
choice (see (10.44) and (10.83)) of the branches of the
functions $\xi(z)$ and $w_{k}(z)$, the equation (10.98) should be replaced
by the equation
$$
-{2\over 3}Nw_{1}^{3/2}(z) = N\xi(z) -{{i\pi n}\over 2} - d(z)
 -ip + q + O\left (N^{-1}\right ),
\eqno (10.106)
$$
which holds now in the semiannulus
$$
{1\over 2}\rho_{1} <|z-z^{N}_{1}|< \rho_{1}, \qquad -\pi \leq \arg
(z-z^{N}_{1}) 
\leq 0.
\eqno (10.107)
$$

(ii) On the arc $L_{-}$, which is an intersection of the
Stokes line $\gamma_{8}$ with the semiannulus (10.107) (see again Fig.6),
$\arg \zeta^{3/2}$ is 
close to $-{\pi \over 2}$. This means that instead of (10.99) we have
now that
$$
\Phi_{0}(w_{1}(z))=\sqrt{3\over \pi}\, w_{1}^{-{1\over 4}\sg_{3}}
\pmatrix
1 & 1 \\
1 & -1
\endpmatrix
\left (I+O(N^{-1})\right )e^{{2\over 3}Nw_{1}^{3/2}}
\pmatrix
e^{-i{\pi \over 6}}& -e^{i{\pi \over 6}} \\
0 & -e^{-i{\pi \over 3}}
\endpmatrix,
\eqno (10.108)
$$
as $N\to \infty, \qquad z\in L_{-}.$

(iii) Since we always assume that $\mu(z)$ is defined according
to (10.44), the right hand side of (10.100) gains factor
$e^{i\pi }$, which in turn
replaces the formula (10.101) by the one
$$
V_{1}(z) = -i\sqrt{a^{0}_{12}\over \mu}\left [
\pmatrix
1 & 0 \\
-{a_{11}\over a^{0}_{12}} & {-\mu \over a^{0}_{12}}
\endpmatrix
+O\left (N^{-1}\right ) \right ] w_{1} ^{1/4\sg_{3}}.
\eqno (10.109)
$$

The completion of the derivation is exactly the same as in the case of
$\Pi_{3}$. 
The formulae (10.108), (10.109), and (10.106) yield the asymptotic
equation 
$$
\Psi^{\TP}_{1}(z) =
-i\sqrt{6\over \pi}\,T_{0}(z)
\left \{I
+O\left (N^{-1}\right ) \right \}
\,e^{\left (-N\int^{z}_{z_{k(8)}}\mu(u)du +ip  \right ) \sg_{3}}
\pmatrix
e^{-i{\pi \over 6}} & -e^{i{\pi \over 6}}\\
0 & -e^{-i{\pi \over 3}}
\endpmatrix,
\eqno (10.110)
$$
as $N\to \infty$ and $z \in L_{-}$.
In obtaining (10.110) we also took into account (10.42).
Comparing the equation (10.110) with the WKB-formula (10.38), $j=8$,
we get 
the following estimate for the connection matrix $\Pi_{8}$:
$$
\Pi_{8} = \sqrt{6\over \pi}\,
e^{ip\sg_{3}}
\pmatrix
e^{-2i{\pi \over 3}} & -e^{-i{\pi \over 3}} \\
0 & e^{i{\pi \over 6}}
\endpmatrix
 + O(N^{-1}).
\eqno (10.111)
$$

\vskip .2in
To complete the evaluation of the matrix $Q$ we only need to substitute
the formulae (10.96), (10.105), and (10.111) into  the equation
(10.94) and 
take into account the definitions (see (10.71-73)) of constants
$C^{j}_{n}$.  This 
gives us the following  representation for the entries $q_{jk}$ of
matrix $Q$ :
$$\eqalignno{
q_{11} &= \overline{ q_{22}} = -e^{-i\pi n -2ip } +O(N^{-1})=1+O(N^{-1}),
& (10.112)\cr
q_{12} &= ie^{-2NC_{n} +{1\over 4}\ln{{g\over \la}} +2\la_{n} -2q }
\left (1+O(N^{-1})\right ),
& (10.113)\cr
q_{21} &= e^{2NC_{n} -{1\over 4}\ln{{g\over \la}} -2\la_{n} +2q }
O(N^{-1}),
& (10.114) \cr}
$$
where the last equality in (10.112) is due to the exact formula for $p$ given
in (10.98)

>From (10.112) we conclude (see (10.92)) that
$$
s_{2} = O(N^{-1}).
\eqno (10.115)
$$
The normalization condition $s_{1} = -2\pi i = - q_{12}$ and
(10.113) imply the asymptotic equation
$$
 \la_{n} = NC_{n} - {1\over 8}\ln{{g\over \la}}  +q +{1\over 2}
\ln 2\pi +
O(N^{-1})
\eqno (10.116)
$$
for the normalization parameter $\la_{n}$, which in turn transforms (10.114)
into the estimate
$$
q_{21} = O(N^{-1}),
\eqno (10.117)
$$
We will improve this estimate significantly later on.

{\it{Remark 10.5.}} If instead of (10.32) we had assumed the weaker
asymptotic conditions
$$
R_{n} = O(1),\qquad \theta_{n}, \theta_{n-1} =O\left (N^{-1}\right ),
$$
all the above analysis would have gone through.
The only difference would be in the expressions for the quantities
$p$ and $q$: instead of the equations given in (10.98) we
would have that
$$
p = {\pi \over 4}\left (1 - \sqrt {g\over \la}\,
{R_{n} + t/2g \over \sqrt{a^{2}-1}}\right )
$$
and
$$
q = - {1\over 4}\sqrt {g\over \la}\,
{R_{n} + t/2g \over \sqrt{a^{2}-1}}
\ln {{1-a +\sqrt{a^{2}-1}}\over{a-1 +\sqrt{a^{2}-1}}}.
$$
Imposing {\it{afterwords}} the constraint $s_{2} =0 \Longrightarrow
q_{11} =1$, 
we would come again to the equation (10.112), but this time as
an equation {\it{for}} $R_{n}$, which obviously leads to ansatz (10.32).
Hence {\it { the equation $s_{2} = 0$ is identified with
the Bohr-Sommerfeld quantization condition from the section 7 above
(cf. (7.12-15)).}} 

\vskip .2in
The only monodromy parameter which is left is $s_{3}$. For its evaluation
we, just like in the case of the matrix $Q$, shall use the factorization
$$
S_{3} = \La_{3}^{-1}\Pi_{03}\Pi_{04}^{-1}\La_{4}
\eqno (10.118)
$$
where
$$ \Lambda_{3,4}  = \left [\Psi_{3,4}^{\WKB}(z)\right ]^{-1}
 \Psi_{3,4}(z)
$$
and
$$ \Pi_{03,04}  = \left [\Psi_{3,4}^{\WKB}(z)\right ]^{-1}
 \Psi_{0}^{\TP}(z).
$$
The matrices $\Lambda_{3,4}$ are given by the same equation  (10.96)
as we 
have for the ones $\Lambda_{3,8}$. In addition, due to (10.116)
we obtain that
$$
\Lambda_{3} = \Lambda_{4} = 
\pmatrix
1 & 0 \\
0 & R^{-1/2}
\endpmatrix
e^{({1\over 8}\ln {g\over \la} + i\frac{n\pi }{2}-
{1\over 2}\ln 2\pi  - q )\sg_{3}}
\left ( I + O(N^{-1})\right ).
\eqno (10.119)
$$
The evaluation of the connection matrices
$\Pi_{03,04}$ is very simple since the asymptotic representation
(10.38) for the
WKB-solutions $\Psi^{\WKB}_{3,4}(z)$ given in Theorem 10.2 is virtually
the same as the asymptotic representation (10.79) for  the
turning point solution $\Psi^{\TP}_{0}(z)$ given in Theorem 10.3. This
means that 
the matching procedure this time is absolutely trivial (again, a
benefit of the 
initial ansatz (10.32) !). Indeed, comparing the equations (10.38) with
(10.79) in the  
intersections of the turning point domain $W_{0}$ and the Stokes lines
$\g^{0}_{3,4}$ 
(we recall that the WKB-formula (10.38) is valid up to the point z=0) we
obtain that
$$
\Pi_{03} = \Pi_{04} = e^{-N\int_{0}^{z_{1}}\mu(u)du\sg_{3}}
\left (I + O\left (N^{-1}\right ) \right )
= e^{N\delta_{0}\sg_{3}}\left 
(I + O\left (N^{-1}\right ) \right ),
\eqno (10.120)
$$ 
where
$$
\delta_{0}= {\la \over 2}\left [a\sqrt{a^{2} -1} -\ln(a+\sqrt{a^{2} -1})
\right ]>0,
$$
and $n$ is supposed to be even. For odd $n$, one has to put $i$ in front
of the r.h.s. of the last equation in (10.120).

The formulae (10.118-120) lead to the asymptotic equation
$$
S_{3} = e^{N\delta_{0}\sg_{3}}\left (I + O\left (N^{-1}\right )\right )
e^{-N\delta_{0}\sg_{3}},
\eqno (10.121)
$$
which in turn implies the following estimate for the Stokes parameter
$s_{3}$:
$$
s_{3} = s^{0}e^{2N\delta_{0}}, \qquad s^{0} = O\left (N^{-1}\right ).
\eqno (10.122)
$$
\vskip .1in

Along with the factorization (10.94) one can suggest
another factorization of the matrix $Q$, which uses the possibility of
connecting the canonical solutions $\Psi_{3}$ and $\Psi _{8}$ through
the double turning point $z=0$ :
$$
Q = \Lambda^{-1}_{3}\Pi_{03}\Pi^{-1}_{08}\Lambda_{8},
$$
where
$$ \Pi_{08}  = \left [\Psi_{8}^{\WKB}(z)\right ]^{-1}
 \Psi_{0}^{\TP}(z).
$$
The calculation of the matrix $\Pi_{08}$ is similar to the one
of the matrices $\Pi_{03,04}$, and it leads
to an estimate similar to (10.121):
$$
Q = e^{N\delta_{0}\sg_{3}}\left (I + O\left (N^{-1}\right )\right )
e^{-N\delta_{0}\sg_{3}}.
$$
This equation provides us with the following improvement of the
asymptotics (10.117):
$$
q_{21} = q^{0}e^{-2N\delta_{0}}, \qquad q^{0} = O\left( N^{-1}\right ). 
\eqno (10.123)
$$


{\it{Remark 10.6.}} This analysis also gives  the following
representation of the canonical solutions:
$$\eqalignno{
\Psi_{j}(z) &= \Psi^{\WKB}_{j}(z) \Lambda_{j} = \Psi^{\TP}_{2,l^{(2)}_{j}}(z)
\Pi^{-1}_{2,j}\Lambda_{j},\qquad j=1,2 ,\quad l^{(2)}_{j}=j\, ;
&(10.124 a)\cr
\Psi_{j}(z) &= \Psi^{\WKB}_{j}(z) \Lambda_{j} =
\Psi^{\TP}_{1,l^{(1)}_{j}}(z) 
\Pi^{-1}_{1,j}\Lambda_{j},\qquad j=8,3,\quad l^{(1)}_{8} = 1,\;
l^{(1)}_{3} = 3 \, ,\qquad {}&
(10.124 b)\cr}
$$
where the WKB-solutions $\Psi^{\WKB}_{j}(z)$ and the canonical turning 
point solutions $\Psi^{\TP}_{k,l}(z)$
are described in Theorem 10.2 and  Remark 10.4, respectively. The matrices
 $\Lambda_{j}$ are given in (10.96) and the matrices $\Pi_{k,j}$ satisfy
the asymptotic equations (cf. the evaluation of the matrices
$\Pi_{3}$ and $\Pi_{8}$ above)
$$\eqalign{
\Pi_{1,3} &= 2^{{1\over 2}}e^{-ip\sg_{3}} + O\left (N^{-1}\right ),\qquad 
\Pi_{1,8} = -i2^{{1\over 2}}e^{ip\sg_{3}} + O\left (N^{-1}\right ),\cr
\Pi_{2,1} &= \Pi_{2,2} = 2^{{1\over 2}}I + O\left (N^{-1}\right ),\cr}
\eqno (10.125)
$$
and
$$
e^{-N\xi(z)\sg_{3}}\Pi_{k,j}e^{N\xi(z)\sg_{3}}=O(1)\,;\qquad N\to \infty,
\quad
z\in W_{k,l^{(k)}_{j}}\cap \left \{z : |z-z_{k}|\geq {1\over
2}\rho_{k}\right \}. 
$$
Similar representations for the rest of the canonical solutions can
be obtained by the use of the symmetry, $z\to -z$. Let us emphasize that
all the matrices $\Lambda_{j}$ and $\Pi_{k,j}$ do not depend on $z$. 




\vskip .3in
\noindent {\bf {10.5. Asymptotic Solution of the Inverse Monodromy
Problem. Completion of the Proof of  
the Main Theorem}} 
\par

The results obtained above in the analysis
of the direct monodromy problem for the model differential
equation (10.1), (10.32) can be used for the construction of an
asymptotic solution of the main Riemann-Hilbert  
problem (5.16-18) via two different ways. In the first approach
(cf. [FIK4]) one 
construct the asymptotic solution of (5.16 -18) with the help of
the canonical  
solutions of the system (10.1), (10.32) and use the fact that, due to
the equations (10.124),  
the asymptotic behaviour of these canonical solutions is under a
complete control. Taking also  
into account the  estimates (10.115), (10.122), and (10.123) for the
model monodromy problem, it  
is easy to see  that the ``dressed'' monodromy data,
i.e., the matrices
$$
e^{-N\xi(z) \sg_{3}}S_{k}e^{N\xi(z)\sg_{3}},
$$
corresponding to the model and to the main systems are close to each
other.  
Using then some general results concerning the matrix Riemann-Hilbert
problem,  
one proves that the asymptotic solution approaches the genuine solution
of (5.16-18) as $N\to\infty$. The
details are given  in the Appendix 1. 

The second approach is based on the Deift-Zhou  
method [DZ]. In this approach we define explicitly, using the
semiclassical formulae of 
the section 10.4,  a
piecewise analytic function $\Psi^{0}(z)$ which is
expected to   
approximate the solution $\Psi_{n}(z)$ of the basic Riemann-Hilbert
problem (5.16-18) uniformly on the whole $z$-plane.
Similar to the first scheme, the function $\Psi^{0}(z)$
is closely related to the canonical solutions of the
equation (10.1).
 
In this section we follow the second scheme.  
The first step in this scheme is to define explicitly a
matrix-valued picewise analytic function $\Psi^0(z)$. Define  
the number
$$
R_n^0 = \frac{-t- (-1)^n(t^2-4\la g)^{1/2}}{2g}\,,\qquad \la={n\over
N}\,,
\eqno (10.125a)
$$
and the matrix 
$$
A^0=A^0(z)=\pmatrix
a_{11}^0 & a_{12}^0 \\
a_{21}^0 & a_{22}^0 
\endpmatrix\,,
$$
where
$$\eqalign{
a_{11}^0&=-\left({tz\over2}+{gz^3\over 2}+gzR_n^0\right)=
\alpha_{n}z - \frac{gz^{3}}{2},
\qquad
\a_n={(-1)^n(t^2-4\la g)^{1/2}\over 2}\,,\cr
a^{0}_{12}&=(R^{0}_{n})^{1/2}gz^{2},\cr
a^0_{21}&=-a^0_{12},\qquad a^0_{22}=-a_{11}^0.\cr}
\eqno (10.125b)
$$
Define then the disks 
$$
U^{0}_{k} = \{ z : |z-z_{k}| \leq \rho_{k} \},\quad k=1,2,
$$
where
$$
0<\rho_{1} < \, \text{min}\, \{z_{1}, z_{2}-z_{1} \},\qquad  
0<\rho_{2} < z_{2}-z_{1}.
$$
and
$$
z_{1,2} = \left({{-t \mp 2\sqrt{\la g}}\over g}\right)^{1/2},\quad \la
= {n\over N}, 
$$
are the zeros of the $\mu$-function, 
$$
\mu(z)=\sqrt{-\det A^0(z)}=\frac{z}{2}\sqrt{(t+gz^{2})^{2} -
4\la g}
=\frac{zg}{2}\sqrt{(z^{2}-z^{2}_{1})(z^{2}-z^{2}_{2})}.
\eqno (10.126) 
$$
Let
$$
\xi(z)\equiv \int_{z_{2}}^{z}\mu(u)du = {\la \over
2}\,\left[x\sqrt{x^{2}-1} 
-\ln(x+\sqrt{x^{2}-1})\right]\,, 
\eqno (10.127)
$$
where
$$
x={{t+gz^{2}}\over{2\sqrt{\la g}}}.
$$
(cf. (10.40-42)). Observe that
$$
\mu(z) = z\sqrt{\la g}\sqrt{x^{2} - 1}, 
$$
(cf. (10.43-44)). We fix the branches of the multivalued functions in
(10.126-7)  by the inequalities 
$$
-{\pi \over 2}<\arg z<{\pi \over 2},\quad -\pi <\arg  \sqrt{x^{2}-1}
 < \pi,\quad
 -\pi <\arg(x+ \sqrt{x^{2}-1}) < \pi.
$$
This defines $\mu(z)$ as an analytic 
function on $\C$, with two cuts $[-z_{2},-z_{1}]$ and
$[z_{1},z_{2}]$. The function $\xi(z)$ is analytic as well, and it has
one cut $(-\infty,z_2]$.
\vskip .2in

Let us now choose the radii $\rho_{1}$ and $\rho_{2}$ in such a way
that $\rho_1+\rho_2>z_2-z_1$. Then  
$$
\emptyset \neq \partial U^{0}_{1}\cap \partial U^{0}_{2} = 
\{z_{0}, \bar z_{0}\},\quad \Im z_{0} >0.
$$
Introduce the arcs (see Fig.8)
$$\eqalign{
C^{u}_{2} &=\left \{ z : |z-z_{2}|=\rho_{2},\,\, 0\leq \arg (z-z_{2}) \leq
 \arg (z_{0}-z_{2})\right \},\quad C^{d}_{2} = \tau^{*}(C^{u}_{2}),\cr
C^{u}_{1} &= \left \{ z : |z-z_{1}|=\rho_{1},\,\, \arg(z_{0}-z_{1})\leq
 \arg (z-z_{1}) \leq \pi \right \},\quad C^{d}_{1} =
\tau^{*}(C^{u}_{1}),\cr} 
$$
where
$$
\tau^{*} : z\to \tau^{*}(z)=\bar z.
$$
All the arcs are supposed to be positively oriented with respect to
the corresponding disk $U^{0}_{k}$. Together with 
the segment
$l_{0} = [\bar z_{0}, z_{0} ]$
they form the boundaries for simply connected subsets $\Omega_{1}$ and
$\Omega_{2}$ of the disks $U^{0}_{1}$ and  $U^{0}_{2}$, respectively:
$$\eqalign{
\partial \Omega_{1} = l_{0}\cup C^{u}_{1}\cup C^{d}_{1},\cr
\partial \Omega_{2} = l_{0}\cup C^{d}_{2}\cup C^{u}_{2}.\cr}
$$
The segment $l_{0}$ is supposed to be positevely oriented with respect
to $\Omega_{1}$. 
We shall also take the following convention: given any set $\Omega 
\subset \C $ we denote by $\Omega^{u}$ and $\Omega^{d}$ the closed
upper and lower 
parts of set $\Omega$ with respect to the real axis.
We illustrate the above geometrical constructions in Fig.8.

\vskip .4in
\psdump{p08.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig010445
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Thu Nov 21 19:55:06 1996
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 229 321 383 470
%%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
140.0 551.5 translate 0.450 -0.450 scale
0.500 setlinewidth
n 434.714 320.429 104.295 -156.595 -0.785 arc
gs col-1 s gr
n 434.000 314.000 105.119 154.654 2.726 arcn
gs col-1 s gr
n 272.636 311.727 73.995 -26.250 174.359 arcn
gs col-1 s gr
n 272.636 326.273 73.994 -174.359 26.250 arcn
gs col-1 s gr
% Polyline
n 199 319 m 539 319 l gs col-1 s gr
% Polyline
n 339 279 m 339 359 l gs col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 419 319 m 499 239 l gs col-1 s gr
        [] 0 setdash
n 491.929 243.243 m 499.000 239.000 l 494.757 246.071 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 279 319 m 219 379 l gs col-1 s gr
        [] 0 setdash
n 226.071 374.757 m 219.000 379.000 l 223.243 371.929 l gs 2 setlinejoin col-1 s gr
/Times-Roman findfont 20.00 scalefont setfont
439 204 m 
gs 1 -1 scale (C) col-1 show gr
/Times-Roman findfont 20.00 scalefont setfont
434 444 m 
gs 1 -1 scale (C) col-1 show gr
/Times-Roman findfont 20.00 scalefont setfont
254 424 m 
gs 1 -1 scale (C) col-1 show gr
/Times-Roman findfont 20.00 scalefont setfont
254 229 m 
gs 1 -1 scale (C) col-1 show gr
/Times-Roman findfont 20.00 scalefont setfont
344 304 m 
gs 1 -1 scale (l) col-1 show gr
/Times-Roman findfont 20.00 scalefont setfont
344 349 m 
gs 1 -1 scale (l) col-1 show gr
/Symbol findfont 20.00 scalefont setfont
259 284 m 
gs 1 -1 scale (W) col-1 show gr
/Symbol findfont 20.00 scalefont setfont
259 364 m 
gs 1 -1 scale (W) col-1 show gr
/Symbol findfont 20.00 scalefont setfont
424 259 m 
gs 1 -1 scale (W) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
464 294 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
424 334 m 
gs 1 -1 scale (z) col-1 show gr
/Symbol findfont 20.00 scalefont setfont
424 384 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
284 334 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
324 284 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
324 359 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
439 249 m 
gs 1 -1 scale (u  ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
454 194 m 
gs 1 -1 scale (u  ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 274 m 
gs 1 -1 scale (u  ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
269 219 m 
gs 1 -1 scale (u  ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
439 374 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
449 434 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
269 414 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 354 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
269 429 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 369 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 289 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
269 234 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
289 344 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
454 209 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
329 364 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
329 289 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
349 354 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
349 309 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
354 294 m 
gs 1 -1 scale (u  ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
354 339 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
449 449 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
324 354 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
429 344 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
469 304 m 
gs 1 -1 scale (2) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
224 349 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
229 359 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
444 389 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
444 264 m 
gs 1 -1 scale (2) col-1 show gr
/Symbol findfont 20.00 scalefont setfont
384 499 m 
gs 1 -1 scale (W) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
399 489 m 
gs 1 -1 scale (u,d) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
399 509 m 
gs 1 -1 scale (1,2 ) col-1 show gr
/Times-Roman findfont 19.00 scalefont setfont
309 499 m 
gs 1 -1 scale (The sets) col-1 show gr
/Times-Roman findfont 20.00 scalefont setfont
249 499 m 
gs 1 -1 scale (Fig. 8.) col-1 show gr
showpage
$F2psEnd

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

Consider the region
$$
\C^{*} = \C \setminus\bigl(\, \Omega_{1}\cup \Omega_{2}\cup
\tau(\Omega_{1})\cup \tau(\Omega_{2})\bigr)\,,\quad 
\tau : z\to \tau(z) = -z.
$$
The WKB-analysis performed in the section 10.4 (see Theorem 10.2) 
suggests the 
following explicit matrix-valued function as a candidate for the asymptotic
representation of 
the solution of the orthogonal polynomial Riemann-Hilbert problem
(5.16-18) in the domain $\C^{*}$: 
$$
\Psi^{\WKB}_{\formal}(z) = T_{0}(z)e^{-N\int_{z_{2}}^{z}\mu(u)du\sg_{3}}=
T_{0}(z)e^{-N\xi(z)\sg_{3}},
\eqno (10.128)
$$
where
$$
T_{0}(z) =\sqrt {\frac{\mu - a^0_{11}}{2\mu}}
\pmatrix
1 & \frac{a^{0}_{12}}{\mu - a_{11}}\\
\frac{a^{0}_{12}}{\mu - a_{11}} & 1
\endpmatrix.
$$
$\mu(z)$ and $\xi(z)$ are defined in (10.126) and (10.127),
respectively, and $a^0_{11},\;a^0_{12}$ are the elements (1.125b) 
of the matrix $A^0$.
It is very important for us that both the function $T_{0}(z)$ and
$e^{-N\xi(z)\sg_{3}}$ have the same multiplicative jump, $(-1)^{n}$,
over the interval $[-z_{1},z_{1}]$, so that their product,
$\Psi^{\WKB}_{\formal}(z)$, is a {\it single-valued}
analytic function on $\C^{*}$, which, in addition, satisfies the
symmetry equation 
$$
\Psi^{\WKB}_{\formal}(z)= (-1)^{n}\sg_{3}\Psi^{\WKB}_{\formal}(-z)\sg_{3}.
$$
Later we will define the function $\Psi^0(z)$ in $\C^*$ in terms of
$\Psi^{\WKB}_{\formal}(z)$ (see the formula (10.135) below). 

To construct $\Psi^0(z)$
in the sets $\Omega_{k}$ and 
$\tau (\Omega_{k})$ we use the turning points
analysis of the section 10.4 (see Theorem 10.4 and Remark
10.4). To that end, we 
recall the definition (10.80-83) of the change-of-variable functions
$w_{1,2}(z)$ : 
$$\eqalignno{
w_{k} &= \left ({3\over 2}\,\int^{z}_{z^{N}_{k}}\nu(z)dz\right )^{2\over 3},
\quad k=1,2,
& (10.129)\cr
\nu^2(z)&=\mu^{2}(z)+{1\over N}\left ({t\over 2}
+gR_{n} -{gz^{2}\over 2}\right ),\cr
\nu^{2}(z^{N}_{k}) &= 0,\quad z^{N}_{k}- z_{k} = O\left(N^{-1}\right),\quad
 z_{1,2} = \left({{-t \mp 2\sqrt{\la g}}\over g}\right)^{1/2},\cr
w_{k}(z) &=e^{{i\pi \over 3}(2-k)}z_{k}(4g^{3}\lambda)^{1/6}(z-z_{k}) + O\left
(N^{-1}+|z-z_{k}|^{2}\right ),\qquad
z\to z_{k},\quad N\to \infty\, .\cr}
$$
Observe that the function $\f_N(z)$ of Theorem 1.1 is given by the
equation
$$
\f_N(z)=
\left\{
\eqalign{
&w_2(z),\quad\text{for}\quad k=2,\cr
&e^{2\pi i/3}w_1(z),\quad\text{for}\quad k=1.\cr}
\right.
$$
For sufficiently large $N$, the sets $ U^{0}_{k}$ and
$\Omega_{k}\subset U^{0}_{k}$ are 
both included into the domain of analyticity of the function
$w_{k}(z),\;k=1,2$.  
Therefore, we can define holomorphic in $z\in\Omega_{k}$ matrix-valued 
functions 
 $\Psi^{u}_{k}(z)$ and $\Psi^{d}_{k}(z)$ by the equations:
$$\eqalignno{
\Psi^{u}_{1}(z) &= 2^{-{1\over
2}}V^{0}_{1}(z)\Phi_{0,3}(w_{1}(z))\Lambda_{0} 
e^{(ip +i\frac{n\pi}{2})\sg_{3}},\qquad z\in \Omega_{1},
& (10.130 a)\cr
\Psi^{d}_{1}(z) &= 2^{-{1\over
2}}V^{0}_{1}(z)\Phi_{0,1}(w_{1}(z))i\sg_{1}\Lambda_{0} 
e^{-(ip +i\frac{n\pi}{2})\sg_{3}}, \qquad z\in \Omega_{1}
& (10.130 b)\cr
\Psi^{u}_{2}(z) &= 2^{-{1\over
2}}V^{0}_{2}(z)\Phi_{0,2}(w_{2}(z))\Lambda_{0},\qquad 
z\in \Omega_{2},
& (10.130 c)\cr
\Psi^{d}_{2}(z) &= 2^{-{1\over
2}}V^{0}_{2}(z)\Phi_{0,1}(w_{2}(z))\Lambda_{0},\qquad 
z\in \Omega_{2},
& (10.130 d)\cr}
$$
(cf. (10.89), (10.124), (10.125)), 
where $w_{1,2}(z)$ are given in (10.129), then,
$$
p = {\pi \over 4}\,(1+(-1)^{n}),
$$
and the rest of the objects in (10.130a-d) is defined
as follows:
\vskip .1in
{\bf 1. Model canonical solutions $\Phi_{0,l}(z)$} (cf. (10.86),
(10.91)) {\bf :} 
$$\eqalign{
\Phi_{0,1}(w) &= \sqrt{\frac{\pi}{3}}\Phi_{0}(w)
\pmatrix
e^{-i\frac{\pi}{3}} & e^{i\frac{\pi}{6}} \\
-e^{i\frac{\pi}{3}} & 0
\endpmatrix,\qquad
\Phi_{0,2}(w) = \sqrt{\frac{\pi}{3}}\Phi_{0}(w)
\pmatrix
e^{-i\frac{\pi}{3}} & 0 \\
-e^{i\frac{\pi}{3}} & -e^{-i\frac{\pi}{6}}
\endpmatrix,\cr
\Phi_{0,3}(w) &= \sqrt{\frac{\pi}{3}}\Phi_{0}(w)
\pmatrix
e^{-i\frac{\pi}{3}} & 0 \\
0 & -e^{-i\frac{\pi}{6}}
\endpmatrix,\quad 
\Phi_{0}(w) = N^{{1\over 6}\sg_{3}}
\pmatrix
y_{1}(N^{2/3}w) & y_{2}(N^{2/3}w) \\
y'_{1}(N^{2/3}w) & y'_{2}(N^{2/3}w)
\endpmatrix,\cr
y_{1,2}(\zeta) &= \zeta ^{1/2}H_{1/3}^{(1,2)}({2\over 3}i{\zeta}^{3/2}),
\qquad i = e^{-{3i\pi \over 2}},\qquad 
(') ={d\over d\zeta}\, .\cr}
$$
\vskip .2in
{\bf 2. Gauge factors $V_{k}^{0}(z)$} (cf. (10.84)) {\bf :}
$$
V^{0}_{k}(z)= \sqrt{a^{0}_{12}\over w_{k}'}
\pmatrix
1 & 0 \\
-{a^0_{11}\over a^{0}_{12}} & {w_{k}'\over a^{0}_{12}}
\endpmatrix,\quad (') = {d\over dz},
$$
where $a_{11}^0$ and $a_{12}^{0}$ are given in (10.125b).

\vskip .2in
{\bf 3. Constant matrix $\Lambda_{0}$} (cf. (10.119)) {\bf :}
$$\eqalign{
 \Lambda_{0} &=
\pmatrix 
1 & 0 \\
0 & (R^{0}_{n})^{-1/2}
\endpmatrix e^{({1\over 8}\ln{\frac{g}{\la}} - q - {1\over
2}\ln{2\pi})\sg_{3}}, \cr
q &= {1\over 4}(-1)^{n}
\ln{{1-a +\sqrt{a^{2}-1}}\over{a-1 +\sqrt{a^{2}-1}}}\equiv
\frac{1}{8}\ln{\frac{g}{\la}} + \frac{1}{4}\ln R^{0}_{n},\qquad 
a = -{t\over{2\sqrt{\la g}}}.\cr}
$$
\vskip .3in

We note that
$$
\Lambda_{0} = (R^{0}_{n})^{-1/4}(2\pi )^{-\frac{\sg_{3}}{2}},
$$
therefore the {\it{exact}} equation
$$
\Psi_{k}^{u}(z)=\Psi_{k}^{d}(z)
\pmatrix
1 & -2\pi i \\
0 & 1
\endpmatrix,
\eqno (10.131)
$$ 
takes place. 


An elementary analysis leads to the following equations (cf. (10.98),
(10.106)) for the functions $w_{1,2}(z)$ :
$$\eqalignno{
{2\over 3}Nw_{1}^{3/2}(z) &= N\xi(z) +{{i\pi n}\over 2} - d(z) +ip +
q + O\left (N^{-1}\right ),
& (10.132 a)\cr
& z\in (\partial \Omega_{1})^{u},\quad \frac{\pi}{3}\leq \arg w_{1}
\leq \frac{4\pi}{3}\, ; \cr
-{2\over 3}Nw_{1}^{3/2}(z) &= N\xi(z) -{{i\pi n}\over 2} - d(z) -ip +
q + O\left (N^{-1}\right ),
& (10.132 b)\cr
&z\in (\partial \Omega_{1})^{d},\quad -\frac{2\pi}{3}\leq \arg w_{1}
\leq \frac{\pi}{3}\, ; \cr
{2\over 3}Nw_{2}^{3/2}(z) &= N\xi(z) - d(z) +
q + O\left (N^{-1}\right ),
& (10.132 c)\cr
&z\in \partial \Omega_{2},\quad -\pi\leq \arg w_{2} \leq \pi \, ,\cr}
$$
where
$$
d(z) ={1\over 4}\ln \frac{(x+\sqrt{x^{2}-1} + a- (-1)^{n}\sqrt{a^{2}-1})^{2}}
{2(x+a)}.
$$
Simultaneously, we have (cf. (10.100)) that
$$\eqalign{
&w'_{1} = w^{-1/2}_{1}\mu + O\left (N^{-1}\right ),\quad z\in
(\partial \Omega_{1})^{u}, \cr
&w'_{1} = e^{i\pi}w^{-1/2}_{1}\mu + O\left (N^{-1}\right ),
\quad z\in (\partial \Omega_{1})^{d},\cr
&w'_{2} = w^{-1/2}_{2}\mu + O\left (N^{-1}\right ),\quad z\in \partial
\Omega_{2},\cr} 
$$
which  implies the following equations (cf. (10.101), (10.109))
for the gauge factors $V^{0}_{1,2}(z)$:
$$\eqalignno{
&V^{0}_{1}(z) = \sqrt{a^{0}_{12}\over \mu}\left [
\pmatrix
1 & 0 \\
-{a_{11}^0\over a^{0}_{12}} & {\mu \over a^{0}_{12}}
\endpmatrix
+O\left (N^{-1}\right ) \right ] w_{1} ^{1/4\sg_{3}}, \quad z\in
(\partial \Omega_{1})^{u}, 
& (10.133a)\cr
&V^{0}_{1}(z) = -i\sqrt{a^{0}_{12}\over \mu}\left [
\pmatrix
1 & 0 \\
-{a_{11}^0\over a^{0}_{12}} & {-\mu \over a^{0}_{12}}
\endpmatrix
+O\left (N^{-1}\right ) \right ] w_{1} ^{1/4\sg_{3}}, \quad z\in
(\partial \Omega_{1})^{d}, 
& (10.133 b)\cr
&V^{0}_{2}(z) = \sqrt{a^{0}_{12}\over \mu}\left [
\pmatrix
1 & 0 \\
-{a_{11}^0\over a^{0}_{12}} & {\mu \over a^{0}_{12}}
\endpmatrix
+O\left (N^{-1}\right ) \right ] w_{2} ^{1/4\sg_{3}}, \quad z\in
\partial \Omega_{2}. 
& (10.133 c)\cr}
$$
Finally, taking into account the asymptotics
of the Bessel functions and the algebraic identity (see (10.103)),
$$
\sqrt{a^{0}_{12}\over \mu}
\pmatrix
1 & 1 \\
-{\mu +a_{11}^0\over a^{0}_{12}} & {\mu-a_{11}^0 \over a^{0}_{12}}
\endpmatrix
e^{d(z)\sigma_{3}} =
T_{0}(z)\sqrt{2}\left (\frac{\la}{g}\right )^{-\frac{\sg_{3}}{8}}
(R^{0}_{n})^{\frac{\sg_{3}}{4}}=T_{0}(z)2^{{1\over 2}}e^{q\sg_{3}},
$$
we derive from (10.132-133) the 
following crucial asymptotic
properties of the functions $\Psi^{u,d}_{k}(z)$ (cf. (10.104),
(10.110)): 

{\bf{(i)}} on the boundary of the sets $\Omega_{k},\;k=1,2$, except
for the segment $l_{0}$, the asymptotic 
behaviour of $\Psi^{u,d}_{k}(z)$, as $N\to \infty$, 
matches that of the WKB-ansatz (10.128). Namely, we
have:
$$
\Psi^{u,d}_{k}(z) = T_{0}(z)\left \{I + O\left (N^{-1}\right)\right \}
e^{-N\xi(z)\sg_{3}}\Lambda_{0}\, ,\quad N\to \infty,
\eqno (10.134 a)
$$
uniformly in
$
z\in \overline{\left (\partial \Omega_{k}\right )^{u,d}\setminus
l_{0}^{u,d}}\, 
$
where the bar means the closure;

{\bf{(ii)}} on the segment $l^{u}_{0}$ ($l^{d}_{0}$) the
functions $\,\{ \Psi_{k}^{u}(z)\}_{k=1,2}\,$ ($\{
\Psi_{k}^{d}(z)\}_{k=1,2}$, respectively) have 
the following asymptotics independent of $k$ :
$$
\Psi^{u}_{k}(z) = T_{0}(z)\left \{I + O\left (N^{-1}\right)\right \}
e^{-N\xi(z)\sg_{3}}
\pmatrix
1 & 0 \\
i & 1 
\endpmatrix \Lambda_{0}\, ,\quad N\to \infty,
\eqno (10.134 b)
$$
uniformly in
$
z\in l_{0}^{u}\, ,
$ 
and
$$
\Psi^{d}_{k}(z) = T_{0}(z)\left \{I + O\left (N^{-1}\right)\right \}
e^{-N\xi(z)\sg_{3}}
\pmatrix
1 & 0 \\
-i & 1 
\endpmatrix \Lambda_{0}\, ,\quad N\to \infty,
\eqno (10.134 c)
$$
uniformly in
$
z\in l_{0}^{d}.
$
\vskip .4in
Put now
$$
\Psi^{0}(z) =
\left \{
\eqalign{
&T_{0}(z)e^{-N\xi(z)\sg_{3}}\Lambda_{0} \quad  \text{for}\quad z \in
\C\setminus\bigl(\Omega_{1} 
\cup \Omega_{2} \cup \Omega_{-1}\cup \Omega_{-2}\bigr)\equiv \C^*, \cr
&\Psi^{u,d}_{k}(z) \qquad \text{for}\quad z\in \Omega_{k}^{u,d}, \quad
k=1,2, \cr
&\Psi^{u,d}_{-k}(z) \qquad  \text{for}\quad z\in 
\Omega_{-k}^{u,d},\quad k=1,2,\cr}
 \right.
\eqno (10.135)
$$
where we use the notations
$$
\Omega_{-k}^{u,d} = \tau(\Omega_{k}^{u,d}),\qquad 
\Psi^{u,d}_{-k}(z) = (-1)^{n}\sg_{3}\Psi^{d,u}_{k}(-z)\sg_{3},\quad k=1,2.
$$
We would like to recall that the product $T_{0}(z)e^{-N\xi(z)\sg_{3}}$
is a single-valued analytic function on $\C^*$ (cf. the above
discussion related to the equation (10.128)). 
The function $\Psi^{0}(z)$ is presented in Fig.9.
\vskip .4in
\psdump{p09.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig002107
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Thu Feb  6 15:26:52 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 154 309 458 482
%%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
67.0 624.5 translate 0.630 -0.630 scale
0.500 setlinewidth
n 441.608 331.177 m 439.000 339.000 l 437.619 330.870 l gs 2 setlinejoin col-1 s gr
n 482.333 342.333 43.461 -32.471 -175.602 arcn
gs col-1 s gr
n 513.018 364.676 m 519.000 359.000 l 516.392 366.823 l gs 2 setlinejoin col-1 s gr
n 482.333 335.667 43.461 175.602 32.471 arcn
gs col-1 s gr
n 522.530 311.548 m 519.000 319.000 l 518.608 310.763 l gs 2 setlinejoin col-1 s gr
n 569.000 329.000 50.990 11.310 -168.690 arcn
gs col-1 s gr
n 618.608 347.237 m 619.000 339.000 l 622.530 346.452 l gs 2 setlinejoin col-1 s gr
n 569.000 349.000 50.990 168.690 -11.310 arcn
gs col-1 s gr
n 244.982 313.324 m 239.000 319.000 l 241.608 311.177 l gs 2 setlinejoin col-1 s gr
n 275.667 342.333 43.461 -4.398 -147.529 arcn
gs col-1 s gr
n 316.392 346.823 m 319.000 339.000 l 320.381 347.130 l gs 2 setlinejoin col-1 s gr
n 275.667 335.667 43.461 147.529 4.398 arcn
gs col-1 s gr
n 235.470 366.452 m 239.000 359.000 l 239.392 367.237 l gs 2 setlinejoin col-1 s gr
n 189.000 349.000 50.990 -168.690 11.310 arcn
gs col-1 s gr
n 139.392 330.763 m 139.000 339.000 l 135.470 331.548 l gs 2 setlinejoin col-1 s gr
n 189.000 329.000 50.990 -11.310 168.690 arcn
gs col-1 s gr
% Polyline
n 439 339 m 619 339 l gs col-1 s gr
n 611.000 337.000 m 619.000 339.000 l 611.000 341.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 139 339 m 319 339 l gs col-1 s gr
n 311.000 337.000 m 319.000 339.000 l 311.000 341.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 519 359 m 519 324 l  519 319 l gs col-1 s gr
n 517.000 327.000 m 519.000 319.000 l 521.000 327.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 559 339 m 604 299 l gs col-1 s gr
        [] 0 setdash
n 596.692 302.820 m 604.000 299.000 l 599.349 305.810 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 479 339 m 509 369 l gs col-1 s gr
        [] 0 setdash
n 504.757 361.929 m 509.000 369.000 l 501.929 364.757 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 269 339 m 254 304 l gs col-1 s gr
        [] 0 setdash
n 255.313 312.141 m 254.000 304.000 l 258.990 310.565 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 199 339 m 149 379 l gs col-1 s gr
        [] 0 setdash
n 156.496 375.564 m 149.000 379.000 l 153.998 372.441 l gs 2 setlinejoin col-1 s gr
% Polyline
n 239 319 m 239 359 l gs col-1 s gr
n 241.000 351.000 m 239.000 359.000 l 237.000 351.000 l gs 2 setlinejoin col-1 s gr
/Symbol findfont 15.00 scalefont setfont
464 329 m 
gs 1 -1 scale (Y) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
459 359 m 
gs 1 -1 scale (Y) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
554 309 m 
gs 1 -1 scale (Y) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
554 374 m 
gs 1 -1 scale (Y) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
174 314 m 
gs 1 -1 scale (Y) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
174 379 m 
gs 1 -1 scale (Y) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
149 359 m 
gs 1 -1 scale (r) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
249 329 m 
gs 1 -1 scale (r) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
589 329 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
469 364 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
474 334 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
254 339 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
154 369 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
564 379 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
564 314 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
599 334 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
189 384 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
189 319 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
184 384 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
184 319 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
184 304 m 
gs 1 -1 scale (u) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
564 299 m 
gs 1 -1 scale (u) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
564 364 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
184 369 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
389 244 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
399 244 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
409 244 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
389 424 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
399 424 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
409 424 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
469 349 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
474 319 m 
gs 1 -1 scale (u) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
499 349 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
504 359 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
474 359 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
479 329 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
569 309 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
569 374 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
194 379 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
194 314 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
274 359 m 
gs 1 -1 scale (Y) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
284 364 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
284 349 m 
gs 1 -1 scale (d) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
274 329 m 
gs 1 -1 scale (Y) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
284 334 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
289 334 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
284 319 m 
gs 1 -1 scale (u) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
294 329 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
289 364 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
294 359 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
419 424 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
419 244 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
429 424 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
439 429 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
429 244 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
439 249 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
359 254 m 
gs 1 -1 scale (T) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
369 254 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 254 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
359 434 m 
gs 1 -1 scale (T) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
369 434 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 434 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
319 499 m 
gs 1 -1 scale (The function) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
399 499 m 
gs 1 -1 scale (Y) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
409 494 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
414 499 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
274 499 m 
gs 1 -1 scale (Fig. 9.) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
364 444 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
364 264 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
434 499 m 
gs 1 -1 scale (and contour \(10.136\)) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
444 254 m 
gs 1 -1 scale (L) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
454 259 m 
gs 1 -1 scale (0) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
444 434 m 
gs 1 -1 scale (L) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
454 439 m 
gs 1 -1 scale (0) col-1 show gr
showpage
$F2psEnd

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

The function $\Psi^{0}(z)$ is a piecewise analytic function, which
satisfies the symmetry  relation
$$
\Psi^{0}(z) =(-1)^{n}\sg_{3}\Psi^{0}(-z)\sg_{3}.
$$ 
It has a jump across the contour 
$$
\Sg_{1}\cup \Sg_{-1}\cup [z_{1}-\rho_{1}, z_{2}+\rho_{2}]
\cup [-z_{2}-\rho_{2}, -z_{1}+\rho_{1}]
\eqno (10.136)
$$
(see Fig.9), where 
$$\eqalign{
\Sg_{1} &= \partial \Omega_{1} \cup  \partial \Omega_{2} = l_{0} +
C^{u}_{1} + C^{d}_{1} + C^{d}_{2} + C^{u}_{2},\cr 
\Sg_{-1} &= \tau(\Sg_{1}),\qquad \tau(z) =-z,\cr}
$$
and we assume that the intervals  $[z_{1}-\rho_{1}, z_{2}+\rho_{2}]$
and $[-z_{2}-\rho_{2}, -z_{1}+\rho_{1}]$ are oriented from the left to
the right. Let 
$$
M(z) = [\Psi^{0}_{-}(z)]^{-1}\Psi^{0}_{+}(z)
$$
be the corresponding jump matrix. Due to the equation (10.131),
$$
M(z) = 
\pmatrix
1 & -2\pi i \\
0 & 1 
\endpmatrix = S_{1}
\quad
\text{for}\quad z \in [z_{1}-\rho_{1}, z_{2}+\rho_{2}]
\cup [-z_{2}-\rho_{2}, -z_{1}+\rho_{1}].
\eqno (10.137)
$$
On the rest of the contour (10.136)  the matrix $M(z)$ does depend on $z$. 
Indeed, the functions $\Psi_{k}^{u,d}(z)$ and
 $T_{0}(z)e^{-N\xi(z)\sg_{3}}\Lambda_{0}$
are not exact solutions of the system (10.1) (they are only
approximate solutions, cf. 
(10.124a,b)). 
Nevertheless, the equations (10.134a,b,c) and the inequality $ \Re
\xi(z)\le 0,\; z\in l_0$, give the following uniform asymptotics:
$$
e^{-N\xi(z)\sg_{3}}M(z)e^{N\xi(z)\sg_{3}} = I + O\left (N^{-1}\right ),
\qquad
 z \in  \Sg_{1} \cup \Sg_{-1}.
\eqno (10.138)
$$
Observe (cf. (10.68-70)) that as $z\to \infty$, the function
$\Psi^{0}(z)$  has the asymptotics (10.4), i.e.,
$$
\Psi^{0}(z)\sim
\left(\sum_{k=0}^\infty{\G_{k}^0\over z^k}\right)
\,e^{-\left({NV(z)\over 2}-n\ln z + \la_{n}^0 \right)\sg_3},
$$
with 
$$
\Gamma_{0}^{0} =
\pmatrix 
1 & 0 \\
0 & (R^{0}_{n})^{-1/2} 
\endpmatrix, \qquad
\Gamma_{1}^{0} = 
\pmatrix 
0 & 1 \\
(R^{0}_{n})^{1/2} &  0
\endpmatrix,
\eqno (10.139a)
$$
and 
$$
\la^{0}_{n} = NC_{n} - {1\over 8}\ln{{g\over \la}}  +q
+{1\over 2} 
\ln 2\pi,\qquad C_{n} = \frac{t^{2}}{8g}-{\lambda \over 4}\ln {g\over
\lambda } - 
{\lambda \over 4}\,.
\eqno (10.139b)
$$

\vskip .4in

Let us summarize our construction. 
The matrix function $\Psi^{0}(z)$ is given by the {\it explicit}
formulae 
(10.135), and these formulae imply that $\Psi^{0}_{11}(z)$ satisfies
the asymptotic equations (1.15-18) of
Theorem  1.1. Hence to prove Theorem 1.1 it remains to prove the
following proposition.   

{\bf{Proposition 10.3.}} {\it The solution $\Psi_{n}(z)$  of the 
Riemann-Hilbert 
problem (5.16-18) satisfies the asymptotic equation
$$
\Psi_{n}(z) = \Pi \left \{I + O\left (\frac{1}{(1+|z|)N}\right )\right
\}\Psi^{0}(z), 
$$
as
$$
N\to \infty ,\qquad 0<\ep<\frac{n}{N} \equiv \lambda <
\lambda_{cr}-\ep,\qquad \lacr 
= \frac{t^{2}}{4g}, 
$$
uniformly in $z \in \C$, where $\Pi$ is a diagonal, constant in $z$,
matrix such that
$$
\Pi = I + O(N^{-1}).
$$
} 
\vskip .1in 

{\it{Proof.}} Let us enlarge the contour (10.136) by the whole real
line, i.e., let us consider the contour (see Fig.10 below)  
$$
\Sg_{1} \cup \Sg_{-1} \cup \R
\eqno (10.140)
$$
(the real line $\R$ is supposed to be oriented from the left to the
right) and put 
$$
Z^{0}(z) = \Psi^{0}(z) e^{N\xi(z)\sg_{3}}.
$$
The function $Z^{0}(z)$ satisfies the following Riemann-Hilbert 
problem on the contour\break (10.140):
$$\eqalignno{
Z^{0}(\infty) &= e^{(NC_{n}-\la^{0}_{n})\sg_{3}}\Gamma^{0}_{0},
& (10.141a)\cr
Z^{0}_{+}(z) &= Z^{0}_{-}(z)G^{0}(z), \qquad z\in \Sg_{1}\cup
\Sg_{-1}\cup \R, 
& (10.141b)\cr}
$$
where the jump matrix $G^{0}(z)$ is given by the equations
$$
\eqalignno{
G^{0}(z) &= e^{-N\xi_{-}(z)\sg_{3}}M(z) e^{N\xi_{+}(z)\sg_{3}},
& (10.142 a)\cr
\qquad & z\in \Sg_{1}
\cup \Sg_{-1}\cup [z_{1}-\rho_{1}, z_{2}+\rho_{2}]
\cup [-z_{2}-\rho_{2}, -z_{1}+\rho_{1}]\,,\cr
G^{0}(z) &= I,\qquad z\in (-\infty, -z_{2} - \rho_{2}]\cup [z_{2} +
\rho_{2}, \infty)\,, 
& (10.142 b) \cr
G^{0}(z) &= e^{-N\xi_{-}(z)\sg_{3}}Ie^{N\xi_{+}(z)\sg_{3}} =
(-1)^{n}I,\qquad z\in  
[-z_{1}+\rho_{1}, z_{1} - \rho_{1}]\,.
& (10.142 c)\cr}
$$
In the last two equations we have taken into account that 
$$\eqalign{
&e^{N\xi_{+}(z)} = e^{N\xi_{-}(z)},\qquad z\in (-\infty, -z_{2} -
\rho_{2}]\cup [z_{2} + \rho_{2}, \infty)\,, \cr
&e^{N\xi_{+}(z)} = (-1)^{n} e^{N\xi_{-}(z)}, \qquad z\in [-z_{1},
z_{1}]\,. \cr}
$$
The Riemann-Hilbert problem (10.141a,b) is depicted in Fig.10.
\vskip .4in
\psdump{p010.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000454
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 17:49:31 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 104 260 507 531
%%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
54.5 613.5 translate 0.630 -0.630 scale
0.500 setlinewidth
n 461.442 311.124 m 459.000 319.000 l 457.448 310.901 l gs 2 setlinejoin col-1 s gr
n 502.100 321.400 43.167 -31.260 -176.813 arcn
gs col-1 s gr
n 533.018 344.676 m 539.000 339.000 l 536.392 346.823 l gs 2 setlinejoin col-1 s gr
n 502.333 315.667 43.461 175.602 32.471 arcn
gs col-1 s gr
n 265.001 293.344 m 259.000 299.000 l 261.633 291.185 l gs 2 setlinejoin col-1 s gr
n 295.630 322.478 43.509 -4.585 -147.342 arcn
gs col-1 s gr
n 336.392 326.823 m 339.000 319.000 l 340.381 327.130 l gs 2 setlinejoin col-1 s gr
n 295.667 315.667 43.461 147.529 4.398 arcn
gs col-1 s gr
n 159.392 310.763 m 159.000 319.000 l 155.470 311.548 l gs 2 setlinejoin col-1 s gr
n 209.000 309.000 50.990 -11.310 168.690 arcn
gs col-1 s gr
n 255.394 346.416 m 259.000 339.000 l 259.308 347.240 l gs 2 setlinejoin col-1 s gr
n 209.441 328.559 50.647 -174.835 11.897 arcn
gs col-1 s gr
n 638.608 327.237 m 639.000 319.000 l 642.530 326.452 l gs 2 setlinejoin col-1 s gr
n 589.000 329.000 50.990 168.690 -11.310 arcn
gs col-1 s gr
n 542.530 291.548 m 539.000 299.000 l 538.608 290.763 l gs 2 setlinejoin col-1 s gr
n 589.000 309.000 50.990 11.310 -168.690 arcn
gs col-1 s gr
% Polyline
n 79 319 m 719 319 l gs col-1 s gr
n 711.000 317.000 m 719.000 319.000 l 711.000 321.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 219 254 m 354 179 l gs col-1 s gr
        [] 0 setdash
n 346.035 181.137 m 354.000 179.000 l 347.978 184.633 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 299 274 m 359 189 l gs col-1 s gr
        [] 0 setdash
n 352.753 194.382 m 359.000 189.000 l 356.020 196.689 l gs 2 setlinejoin col-1 s gr
n 359 189 m 359 189 l gs col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 499 274 m 439 189 l gs col-1 s gr
        [] 0 setdash
n 441.980 196.689 m 439.000 189.000 l 445.247 194.382 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 579 254 m 439 179 l gs col-1 s gr
        [] 0 setdash
n 445.107 184.541 m 439.000 179.000 l 446.996 181.015 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 219 379 m 354 464 l gs col-1 s gr
        [] 0 setdash
n 348.296 458.045 m 354.000 464.000 l 346.165 461.430 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 299 359 m 349 454 l gs col-1 s gr
        [] 0 setdash
n 347.044 445.989 m 349.000 454.000 l 343.504 447.852 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 499 359 m 439 454 l gs col-1 s gr
        [] 0 setdash
n 444.963 448.304 m 439.000 454.000 l 441.581 446.168 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 579 384 m 434 464 l  439 464 l gs col-1 s gr
        [] 0 setdash
n 431.000 462.000 m 439.000 464.000 l 431.000 466.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 179 319 m 179 459 l gs col-1 s gr
        [] 0 setdash
n 181.000 451.000 m 179.000 459.000 l 177.000 451.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 299 319 m 189 459 l gs col-1 s gr
        [] 0 setdash
n 195.515 453.945 m 189.000 459.000 l 192.370 451.474 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 619 319 m 619 179 l gs col-1 s gr
        [] 0 setdash
n 617.000 187.000 m 619.000 179.000 l 621.000 187.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 504 319 m 604 184 l gs col-1 s gr
        [] 0 setdash
n 597.631 189.238 m 604.000 184.000 l 600.845 191.619 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 259 314 m 344 194 l gs col-1 s gr
        [] 0 setdash
n 337.744 199.372 m 344.000 194.000 l 341.008 201.684 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 259 324 m 334 439 l gs col-1 s gr
        [] 0 setdash
n 331.305 431.207 m 334.000 439.000 l 327.955 433.392 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 539 314 m 454 194 l gs col-1 s gr
        [] 0 setdash
n 456.992 201.684 m 454.000 194.000 l 460.256 199.372 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 539 324 m 449 449 l gs col-1 s gr
        [] 0 setdash
n 455.298 443.676 m 449.000 449.000 l 452.051 441.339 l gs 2 setlinejoin col-1 s gr
% Polyline
n 539 339 m 539 294 l gs col-1 s gr
n 537.000 302.000 m 539.000 294.000 l 541.000 302.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 259 299 m 259 339 l gs col-1 s gr
n 261.000 331.000 m 259.000 339.000 l 257.000 331.000 l gs 2 setlinejoin col-1 s gr
/Times-Roman findfont 15.00 scalefont setfont
99 309 m 
gs 1 -1 scale (I) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
679 309 m 
gs 1 -1 scale (I) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
364 304 m 
gs 1 -1 scale (\(-1\)  I) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
194 499 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
204 494 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
214 494 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
224 499 m 
gs 1 -1 scale (+) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
559 154 m 
gs 1 -1 scale (e) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
569 149 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
579 149 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
589 149 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
599 154 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
619 154 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
629 159 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
634 154 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
644 149 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
654 149 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
664 154 m 
gs 1 -1 scale (+) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
414 189 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 204 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 189 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 179 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
414 469 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 484 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 459 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 469 m 
gs 1 -1 scale (-) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
224 494 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
234 499 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
599 149 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
609 154 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
664 149 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
674 154 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
364 469 m 
gs 1 -1 scale (I + O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
364 189 m 
gs 1 -1 scale (I + O\() col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
389 294 m 
gs 1 -1 scale (n) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
184 504 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
174 499 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
164 499 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
154 494 m 
gs 1 -1 scale (s) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
144 494 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 10.00 scalefont setfont
154 499 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
134 494 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
124 494 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
114 499 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
534 559 m 
gs 1 -1 scale (Z ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
549 559 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
544 554 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
209 559 m 
gs 1 -1 scale (Fig. 10.) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
259 559 m 
gs 1 -1 scale (The Riemann-Hilbert problem for the function) col-1 show gr
showpage
$F2psEnd

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



The equations (10.137) and (10.142a) give that
$$
G^{0}(z)= e^{-N\xi_{-}(z)\sg_{3}}S_{1} e^{N\xi_{+}(z)\sg_{3}},
\qquad
z \in [z_{1}-\rho_{1}, z_{2}+\rho_{2}]
\cup [-z_{2}-\rho_{2}, -z_{1}+\rho_{1}]
\eqno (10.143)
$$
(see Fig.10). Simultaneously, the equations (10.138) and (10.142a-c)
yield  the following uniform estimates:
$$\eqalignno{
|I-G^{0}(z)| &\leq CN^{-1}\,, \qquad z\in \Sg_{1}\cup \Sg_{-1}\,,
& (10.144 a)\cr
|I-G^{0}(z)e^{-N\xi_{+}(z)\sg_{3}}S^{-1}_{1} e^{N\xi_{-}(z)\sg_{3}}|
&\leq 
Ce^{-2N\Re{\xi(z)}},
& (10.144 b)\cr
&z\in (-\infty, -z_{2}  -\rho_{2}]
\cup [-z_{1}+\rho_{1},z_{1}-\rho_{1}]\cup [z_{2} +\rho_{2}, \infty).
\cr}
$$

Observe now that $\Re \xi(z) \geq \delta > 0$ for all $
z\in (-\infty, -z_{2}  -\rho_{2}]
\cup [-z_{1}+\rho_{1},z_{1}-\rho_{1}]\cup [z_{2} +\rho_{2}, \infty)$.
Therefore, the formulae (10.144) imply the inequalities
$$
|I-G^{0}(z)|\leq CN^{-1},
\eqno (10.145)
$$
and
$$
|I-G^{0}(z)e^{-N\xi_{+}(z)\sg_{3}}S^{-1}_{1}e^{N\xi_{-}(z)\sg_{3}}|\leq C
e^{-2N\delta},
\eqno (10.146)
$$
which hold uniformly on 
$$
\Sg' = \Sg_{1}\cup \Sg_{-1},
$$
and
$$
\Sg'' =(-\infty, -z_{2}  -\rho_{2}]
\cup [-z_{1}+\rho_{1},z_{1}-\rho_{1}]\cup [z_{2} +\rho_{2}, \infty),
$$
respectively.
In addition, from (10.144) we have a uniform estimate for the 
corresponding $L_{2}$-norms as well:
$$\eqalignno{
||I-G^{0}||_{L_{2}(\Sg')} &\leq CN^{-1},
& (10.147 a)\cr
||I-G^{0}e^{-N\xi_{+}\sg_{3}}S^{-1}_{1}e^{N\xi_{-}\sg_{3}}||_{L_{2}(\Sg'')}
&\leq Ce^{-2N\delta}.
& (10.147 b)\cr}
$$

As indicated in Fig.10, the only pieces of the contour (10.140)
where the matrix $I-G^{0}(z)$ is not uniformly controllable,
are the intervals $[z_{1}-\rho_{1}, z_{2}+\rho_{2}]$ and
$[-z_{2}-\rho_{2}, -z_{1}+\rho_{1}]$. On the parts $[z_{1}, z_{2}]$
and $[-z_{2},-z_{1}]$ of these 
intervals the matrix $I-G^{0}(z)$ oscillates. The principal point is
that 
on the ``bad'' set $[z_{1}-\rho_{1}, z_{2}+\rho_{2}] \cup
[-z_{2}-\rho_{2}, -z_{1}+\rho_{1}]$ the matrix $G^{0}(z)$
{\it{coincides}} with the jump matrix 
of the orthogonal polynomial Riemann-Hilbert problem (5.16-18).
\vskip .2in
Let us consider now  the orthogonal polynomial Riemann-Hilbert problem
(5.16-18). Keeping the notations $\lambda_{n}$, $\Gamma_{0}$, etc., for
the corresponding objects associated with the orthogonal polynomials,
let us put 
$$
Z(z) =
e^{(\lambda_{n}-\lambda^{0}_{n})\sg_{3}}\Gamma^{0}_{0}\Gamma_{0}^{-1} 
\Psi_{n}(z)e^{N\xi(z)\sg_{3}}.
$$
The matrix function $Z(z)$ solves the Riemann-Hilbert problem
(10.141a,b) for the contour (10.140)
with the {\it{same}} normalization yet different jump conditions. 
Denoting by $G(z)$ the jump matrix corresponding to $Z(z)$, we have that
$$
G(z) = e^{-N\xi_{-}(z)\sg_3}S_{1} e^{N\xi_{+}(z)\sg_3},\qquad z\in \R,
$$ 
and
$$
G(z) = I,\qquad z\in \Sg_{1}\cup \Sg_{-1}.
$$
Hence we can rewrite the inequalities (10.145), (10.146) as a single
inequality, 
$$
|I-G^{0}(z)[G(z)]^{-1}|\leq CN^{-1},
\eqno (10.148)
$$
and this inequality is valid uniformly on the contour 
$$
\Sg^{0} = \Sg'\cup \Sg''.
$$
(see Fig.11). Similarly, the inequalities (10.147) imply that
$$
||I-G^{0}G^{-1}||_{L_{2}(\Sg^{0})} \leq CN^{-1}.
\eqno (10.149)
$$
Simultaneously, we have that
$$
G(z) = G^{0}(z),\qquad z \in [z_{1}-\rho_{1}, z_{2}+\rho_{2}]
\cup [-z_{2}-\rho_{2}, -z_{1}+\rho_{1}].
\eqno (10.150)
$$
\vskip .2in


Let now $X(z)$ be the matrix ratio,
$$
X(z) = Z(z)[Z^{0}(z)]^{-1}.
$$
The equation (10.150) shows that $X(z)$ has jumps only on the contour
$\Sg^{0}$ where it solves the following Riemann-Hilbert problem:
$$\eqalign{
X(\infty) &= I,
\cr
X_{+}(z) &= X_{-}(z)F^{0}(z),\qquad z\in  \Sg^{0}, 
\cr}
\eqno (10.151)
$$
where
$$
F^{0}(z) = Z^{0}_{-}(z)G(z)[G^{0}(z)]^{-1}[Z^{0}_{-}(z)]^{-1}.
\eqno (10.152)
$$
This Riemann-Hilbert problem, whose jump matrix $F^0(z)$ is under
a complete control, is depicted in Fig.11. 
\vskip .4in
\psdump{p011.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000460
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 17:53:52 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 79 284 533 508
%%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
54.0 611.0 translate 0.630 -0.630 scale
0.500 setlinewidth
n 481.608 311.177 m 479.000 319.000 l 477.619 310.870 l gs 2 setlinejoin col-1 s gr
n 522.333 322.333 43.461 -32.471 -175.602 arcn
gs col-1 s gr
n 553.018 344.676 m 559.000 339.000 l 556.392 346.823 l gs 2 setlinejoin col-1 s gr
n 522.333 315.667 43.461 175.602 32.471 arcn
gs col-1 s gr
n 562.530 291.548 m 559.000 299.000 l 558.608 290.763 l gs 2 setlinejoin col-1 s gr
n 609.000 309.000 50.990 11.310 -168.690 arcn
gs col-1 s gr
n 658.608 327.237 m 659.000 319.000 l 662.530 326.452 l gs 2 setlinejoin col-1 s gr
n 609.000 329.000 50.990 168.690 -11.310 arcn
gs col-1 s gr
n 316.392 326.823 m 319.000 319.000 l 320.381 327.130 l gs 2 setlinejoin col-1 s gr
n 275.667 315.667 43.461 147.529 4.398 arcn
gs col-1 s gr
n 139.392 310.763 m 139.000 319.000 l 135.470 311.548 l gs 2 setlinejoin col-1 s gr
n 189.000 309.000 50.990 -11.310 168.690 arcn
gs col-1 s gr
n 235.470 346.452 m 239.000 339.000 l 239.392 347.237 l gs 2 setlinejoin col-1 s gr
n 189.000 329.000 50.990 -168.690 11.310 arcn
gs col-1 s gr
n 244.982 293.324 m 239.000 299.000 l 241.608 291.177 l gs 2 setlinejoin col-1 s gr
n 275.667 322.333 43.461 -4.398 -147.529 arcn
gs col-1 s gr
% Polyline
n 239 299 m 239 339 l gs col-1 s gr
n 241.000 331.000 m 239.000 339.000 l 237.000 331.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 559 339 m 559 294 l gs col-1 s gr
n 557.000 302.000 m 559.000 294.000 l 561.000 302.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 39 319 m 139 319 l gs col-1 s gr
n 131.000 317.000 m 139.000 319.000 l 131.000 321.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 319 319 m 479 319 l gs col-1 s gr
n 471.000 317.000 m 479.000 319.000 l 471.000 321.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 659 319 m 759 319 l gs col-1 s gr
n 751.000 317.000 m 759.000 319.000 l 751.000 321.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 79 319 m 79 439 l  314 439 l gs col-1 s gr
        [] 0 setdash
n 306.000 437.000 m 314.000 439.000 l 306.000 441.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 719 319 m 719 439 l  484 439 l gs col-1 s gr
        [] 0 setdash
n 492.000 441.000 m 484.000 439.000 l 492.000 437.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 399 319 m 399 399 l gs col-1 s gr
        [] 0 setdash
n 401.000 391.000 m 399.000 399.000 l 397.000 391.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 279 359 m 369 199 l gs col-1 s gr
        [] 0 setdash
n 363.335 204.992 m 369.000 199.000 l 366.821 206.953 l gs 2 setlinejoin col-1 s gr
n 359 199 m 359 199 l gs col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 239 319 m 359 199 l gs col-1 s gr
        [] 0 setdash
n 351.929 203.243 m 359.000 199.000 l 354.757 206.071 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 294 284 m 354 214 l gs col-1 s gr
        [] 0 setdash
n 347.275 218.772 m 354.000 214.000 l 350.312 221.376 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 144 354 m 359 189 l gs col-1 s gr
        [] 0 setdash
n 351.436 192.284 m 359.000 189.000 l 353.871 195.457 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 179 259 m 359 184 l gs col-1 s gr
        [] 0 setdash
n 350.846 185.231 m 359.000 184.000 l 352.385 188.923 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 519 359 m 439 199 l gs col-1 s gr
        [] 0 setdash
n 440.789 207.050 m 439.000 199.000 l 444.367 205.261 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 504 279 m 454 214 l gs col-1 s gr
        [] 0 setdash
n 457.292 221.560 m 454.000 214.000 l 460.463 219.122 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 559 319 m 454 199 l gs col-1 s gr
        [] 0 setdash
n 457.763 206.338 m 454.000 199.000 l 460.773 203.704 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 644 359 m 459 189 l gs col-1 s gr
        [] 0 setdash
n 463.537 195.886 m 459.000 189.000 l 466.244 192.940 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 619 259 m 454 179 l gs col-1 s gr
        [] 0 setdash
n 460.326 184.290 m 454.000 179.000 l 462.071 180.691 l gs 2 setlinejoin col-1 s gr
/Times-Roman findfont 15.00 scalefont setfont
344 444 m 
gs 1 -1 scale (I + O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
384 444 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
394 439 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
404 439 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
414 439 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
429 439 m 
gs 1 -1 scale (d) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
439 444 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
429 189 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
419 179 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
419 189 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
419 204 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
379 189 m 
gs 1 -1 scale (I + O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
534 519 m 
gs 1 -1 scale (X) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
544 509 m 
gs 1 -1 scale (0 ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
549 519 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
199 519 m 
gs 1 -1 scale (Fig. 11.) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
249 519 m 
gs 1 -1 scale (The Riemann-Hilbert problem for the function) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
569 519 m 
gs 1 -1 scale (and the contour) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
669 519 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
679 514 m 
gs 1 -1 scale (0) col-1 show gr
showpage
$F2psEnd

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




Similar to the asymptotic problems considered in [DZ2] and [DIZ], the
crucial fact here is that
$$
|I-[F^{0}(z)]^{-1} | = O(N^{-1}),
\eqno (10.153)
$$
uniformly in $z\in \Sg^{0}$ (see Fig.11). Indeed, from the definition
(10.135) of the function
$\Psi^{0}(z)$ and the estimates (10.134b,c) it follows that
$$
|Z^{0}_{-}(z)|\equiv |\Psi_{-}^{0}(z)e^{N\xi_{-}(z)\sg_{3}}| \leq
C,\qquad \forall z\in \Sg^{0}. 
\eqno (10.154)
$$
This equation, together with (10.148), imply obviously
(10.153). Similarly, from (10.149) we obtain the
$L_{2}$-estimate
$$
||I-(F^{0})^{-1} ||_{L_{2}(\Sg^{0})} = O(N^{-1}).
\eqno (10.155)
$$

{\it{Remark 10.7.}}  The
contour $\Sg^{0}=\Sg^{0}(\rho_{1,2})$  is not rigid. Namely, as 
follows from the {\it{explicit}}
formula (10.152) for the jump matrix $F^0(z)$, this matrix-valued
function 
is analytic and preserves its asymptotic behaviour (as $N\to
\infty$)  in a neighborhood of the contour $\Sg^{0}$. This means
that in  
the Riemann-Hilbert problem (10.151) one can always slightly deform 
the contour $\Sg^{0}$. One of the possible deformations is presented
in Fig.12. 
\vskip .4in
\psdump{p012.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000466
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 17:57:13 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 79 320 533 472
%%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
54.0 622.0 translate 0.630 -0.630 scale
0.500 setlinewidth
n 481.608 311.177 m 479.000 319.000 l 477.619 310.870 l gs 2 setlinejoin col-1 s gr
n 522.333 322.333 43.461 -32.471 -175.602 arcn
gs col-1 s gr
n 553.018 344.676 m 559.000 339.000 l 556.392 346.823 l gs 2 setlinejoin col-1 s gr
n 522.333 315.667 43.461 175.602 32.471 arcn
gs col-1 s gr
n 562.530 291.548 m 559.000 299.000 l 558.608 290.763 l gs 2 setlinejoin col-1 s gr
n 609.000 309.000 50.990 11.310 -168.690 arcn
gs col-1 s gr
n 658.608 327.237 m 659.000 319.000 l 662.530 326.452 l gs 2 setlinejoin col-1 s gr
n 609.000 329.000 50.990 168.690 -11.310 arcn
gs col-1 s gr
n 316.392 326.823 m 319.000 319.000 l 320.381 327.130 l gs 2 setlinejoin col-1 s gr
n 275.667 315.667 43.461 147.529 4.398 arcn
gs col-1 s gr
n 139.392 310.763 m 139.000 319.000 l 135.470 311.548 l gs 2 setlinejoin col-1 s gr
n 189.000 309.000 50.990 -11.310 168.690 arcn
gs col-1 s gr
n 235.470 346.452 m 239.000 339.000 l 239.392 347.237 l gs 2 setlinejoin col-1 s gr
n 189.000 329.000 50.990 -168.690 11.310 arcn
gs col-1 s gr
n 244.982 293.324 m 239.000 299.000 l 241.608 291.177 l gs 2 setlinejoin col-1 s gr
n 275.667 322.333 43.461 -4.398 -147.529 arcn
gs col-1 s gr
n 158.368 310.778 m 159.000 319.000 l 154.573 312.043 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 189.000 309.000 31.623 -18.435 161.565 arcn
gs col-1 s gr
        [] 0 setdash
n 213.519 345.161 m 219.000 339.000 l 217.063 347.015 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 190.618 324.147 32.034 -170.754 27.624 arcn
gs col-1 s gr
        [] 0 setdash
n 453.862 310.755 m 454.000 319.000 l 449.998 311.790 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 515.466 302.534 63.632 -3.184 165.003 arcn
gs col-1 s gr
        [] 0 setdash
n 574.457 345.882 m 579.000 339.000 l 578.230 347.210 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 518.318 317.636 64.332 178.785 19.395 arcn
gs col-1 s gr
        [] 0 setdash
n 583.427 292.043 m 579.000 299.000 l 579.632 290.778 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 609.000 309.000 31.623 18.435 -161.565 arcn
gs col-1 s gr
        [] 0 setdash
n 638.542 332.234 m 639.000 324.000 l 642.471 331.480 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 608.583 329.833 30.971 162.783 -10.856 arcn
gs col-1 s gr
        [] 0 setdash
n 221.383 291.105 m 219.000 299.000 l 217.387 290.913 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 282.036 302.036 63.108 10.928 -177.243 arcn
gs col-1 s gr
        [] 0 setdash
n 343.158 327.203 m 344.000 319.000 l 347.118 326.634 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
n 283.216 327.736 61.409 164.642 -8.179 arcn
gs col-1 s gr
        [] 0 setdash
% Polyline
n 239 299 m 239 339 l gs col-1 s gr
n 241.000 331.000 m 239.000 339.000 l 237.000 331.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 559 339 m 559 294 l gs col-1 s gr
n 557.000 302.000 m 559.000 294.000 l 561.000 302.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 39 319 m 139 319 l gs col-1 s gr
n 131.000 317.000 m 139.000 319.000 l 131.000 321.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 319 319 m 479 319 l gs col-1 s gr
n 471.000 317.000 m 479.000 319.000 l 471.000 321.000 l gs 2 setlinejoin col-1 s gr
% Polyline
n 659 319 m 759 319 l gs col-1 s gr
n 751.000 317.000 m 759.000 319.000 l 751.000 321.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 219 299 m 219 339 l gs col-1 s gr
        [] 0 setdash
n 221.000 331.000 m 219.000 339.000 l 217.000 331.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 579 339 m 579 299 l gs col-1 s gr
        [] 0 setdash
n 577.000 307.000 m 579.000 299.000 l 581.000 307.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 639 309 m 759 309 l gs col-1 s gr
        [] 0 setdash
n 751.000 307.000 m 759.000 309.000 l 751.000 311.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 344 309 m 449 309 l gs col-1 s gr
        [] 0 setdash
n 441.000 307.000 m 449.000 309.000 l 441.000 311.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 39 309 m 159 309 l gs col-1 s gr
        [] 0 setdash
n 151.000 307.000 m 159.000 309.000 l 151.000 311.000 l gs 2 setlinejoin col-1 s gr
/Symbol findfont 15.00 scalefont setfont
524 479 m 
gs 1 -1 scale (S) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
534 474 m 
gs 1 -1 scale (0) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
219 479 m 
gs 1 -1 scale (Fig. 12.) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
274 479 m 
gs 1 -1 scale (An admissible deformation of the contour) col-1 show gr
showpage
$F2psEnd

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

  
\vskip .2in
By a standard technique in the theory of the Riemann-Hilbert problem
(see e.g. [CG]; see 
also [BDT] and [DZ]), the 
solution $X^{0}(z)$ of the Riemann-Hilbert problem (10.151) is
given by the formula
$$
X^{0}(z) = I + {1\over 2\pi i}\int _{\Sg^{0}} \rho^{0}(\nu) \left [I-
(F^{0}(\nu))^{-1} 
\right ]{d\nu \over {\nu - z}},
\eqno (10.156)
$$ 
where $\rho^{0}(z)\equiv X^{0}_{+}(z)$ solves the equation
$$
\rho^{0} = I + C_{+}[\rho^{0} \left (I- (F^{0})^{-1}\right )],
$$
in $L_{2}(\Sg^{0})$, and $C_{+}$ is the Cauchy
operator. We note that 
$X^{0}(z)$ is built up from 
the functions, which satisfy the asymptotic condition (10.4). Therefore,
$I-\rho^{0}(z) \sim Cz^{-1}$ as $z\to \infty$, and hence {\it{a priori}}
it belongs to the  
space $L_{2}(\Sg^{0})$.

The
$L_{2}$-boundness of the operator $C_{+}$  (see e.g. [LiS]; see also
[BDT] and [Zh]), together with the estimates (10.153, 155)  imply the
equation 
$$
||I-\rho^{0} ||_{L_{2}(\Sg^{0})} = O(N^{-1}).
$$
This equation together with (10.153) and (10.156) show that
$$
X^{0}(z)= I + O\left (\frac{1}{(1+|z|)N}\right ),
$$
or
$$
e^{(\lambda_{n} -
\lambda^{0}_{n})\sg_{3}}\Gamma^{0}_{0}\Gamma^{-1}_{0}\Psi_{n}(z) =  
\left \{I + O\left (\frac{1}{(1+|z|)N}\right ) \right \}\Psi^{0}(z),
\eqno (10.157)
$$
uniformly in $z\in K$ for any closed $ K \subset \C\setminus
\Sg^{0}$. Replacing 
$\Psi_{n}(z)$ and $\Psi^{0}(z)$ in 
(10.157) by their asymptotic series from (10.4) ( $z\to \infty, \quad
\text{dist}\,\{z, 
\Sg^{0}\}\geq \ep >0$) we obtain that
$$
e^{(\lambda_{n} - \lambda^{0}_{n})\sg_{3}}\Gamma^{-1}_{0}\Gamma_{1}
e^{-(\lambda_{n} - \lambda^{0}_{n})\sg_{3}} -
(\Gamma^{0}_{0})^{-1}\Gamma^{0}_{1} = 
O\left (N^{-1}\right ),
$$
where $\Gamma_{1}$ and $\Gamma^{0}_{1}$ are the matrix coefficients of
the $z^{-1}$-terms in the series for $\Psi_{n}(z)$ and $\Psi^{0}(z)$,
respectively (see (4.15) and (10.139a)). Considering 
(12) and (21) entries in this matrix equation and
taking into account (10.139b) and (10.125a), we end up with the
desired 
estimates for the normalization constant $\lambda_{n}$ and the
recurrence coefficients 
$R_{n}$ corresponding to the system of the orthogonal polynomials in
question: 

$$\eqalignno{
\lambda_{n} &= \lambda_{n}^{0} + O\left (N^{-1}\right ) =
NC_{n} -{1\over 8}\ln \frac{g}{\lambda} + q + {1\over 2}\ln 2\pi + 
O\left (N^{-1}\right ),
& (10.158 a)\cr
R_{n} &= R^{0}_{n} +O\left (N^{-1}\right ) =
\frac{-t -(-1)^{n}\sqrt{t^{2}-4\la g}}{2g} + O\left (N^{-1}\right ).
& (10.158 b)\cr}
$$

In turn, these asymptotic formulae allow us to rewrite the
asymptotic equation \break (10.117) for the orthogonal polynomial
$\Psi$-function as 

$$
\Psi_{n}(z)= 
\Pi \left \{I + O\left (\frac{1}{(1+|z|)N}\right ) \right \}\Psi^{0}(z),
\qquad
z\in K\subset \C\setminus \Sg^{0},
\eqno (10.158 c)
$$
where $\Pi$ is a constant diagonal matrix satisfying the estimate
$$
\Pi = I + O(N^{-1}).
$$

To complete the proof of Proposition 10.3 we only need to notice
that the domain 
of validity of the asymptotic equation (10.158c) can be made the
whole $z$-plane because of the discussed in Remark 10.7 flexibility in
the choice of the 
contour $\Sg^{0}$. The Proposition 10.3 and hence the main Theorem
1.1. are proven. 

{\it{Remark 10.8.}} The kernel $I-[F^{0}(\nu)]^{-1}$ in the integral
representation (10.156) is small (due to the estimate (10.153)),
and it is 
given explicitly in terms of elementary and Bessel's
functions. Therefore, the equation (10.156) enables (cf. [DZ3] and
[DIZ]) to 
obtain the full asymptotic expansion for all the three main
objects,  $\la_{n}$, $R_{n}$, and $P_{n}(z)$.

{\it Remark 10.9.} The asymptotic formulae (1.15--17) follow from 
 (10.158c) and the definition (10.135) of $\Psi^0$.
%\pagebreak


{\bf {Appendix 1: An Alternative Asymptotic Analysis of the Inverse
Monodromy Problem.}}  
\par

Let us denote by $\gamma_{+}$ the anti-Stokes line
$$
\text {Im}\, \int _{z_{1}}^{z} \mu(z)dz = 0,
\eqno (A1.1)
$$
which passes through the point $z_{1}$ and which has the rays $\arg z = \pm
{\pi \over 4}$ as its asymptotes. The image of  $\gamma_{+}$ with
respect to the map $z\to -z$ we denote by $\gamma_{-}$.
We shall also denote by
$\gamma_{\pm}^{u}$ and $\gamma_{\pm}^{d}$ the upper and lower parts
of the $\gamma_{\pm}$, respectively. 

Assume now that $\gamma_{\pm}$ are oriented from the bottom to the top and
include them as a part of the {\it steepest descent} contour
(anti-Stokes graph) 
$$
\Sg = \gamma_{+} \cup \gamma_{-} \cup \R \cup i\R
$$
where $\R$ is oriented from  the left to the right
and $i\R$ -- from the bottom to the top.
Let also $\Psi(z)$ be (cf. Section 10.1) a piecewise analytic function
defined on $\C\setminus\Sg$, which coincides with $\Psi_{j}(z)$ on
the Stokes line $\gamma_{j}$. Define 
$$
Z(z) = \Psi(z) e^{N\xi(z)\sg_{3}}
\eqno (A1.2)
$$
Following the basic idea of the Deift-Zhou method [DZ],
the inverse monodromy problem (10.15)
can be reformulated, in terms of $Z(z)$, as the following Riemann-Hilbert 
problem on the contour $\Sg$:
$$
Z(\infty) = e^{(NC_{n}-\la _{n})\sg_{3}}\Gamma_{0},
\eqno (A1.3)
$$
$$
Z_{+}(z) = Z_{-}(z)G(z), \qquad z\in \Sg,
\eqno(A1.4)
$$
where (see (10.4))
$$
\Gamma_{0} =
\pmatrix
1 & 0 \\
0 & R^{-1/2}_{n}
\endpmatrix
$$
 and the jump matrix $G(z)$ is defined by the equations
$$
G(z)=
\left\{
\eqalign{
& e^{-N\xi_{-}(z)}S_{1} e^{N\xi_{+}(z)},\qquad z\in
(-\infty , -z_{1} ]\cup [z_{1},\infty), \cr 
& e^{-N\xi_{-}(z)}S_{2} e^{N\xi_{+}(z)},\qquad z\in
\gamma_{+}^{u} \cup \gamma_{-}^{d}, \cr
& e^{-N\xi_{-}(z)}S_{3} e^{N\xi_{+}(z)},\qquad z\in i\R,\cr
& e^{-N\xi_{-}(z)}S_{4} e^{N\xi_{+}(z)},\qquad z\in
\gamma_{-}^{u} \cup \gamma_{+}^{d},\cr
& e^{-N\xi_{-}(z)}Q^{-1}e^{N\xi_{+}(z)},\qquad z\in
[0,z_{1}].\cr
& e^{-N\xi_{-}(z)}\sg_{3}Q\sg_{3} e^{N\xi_{+}(z)},\qquad z\in
[-z_{1},0].\cr}
\right.
$$
The Riemann-Hilbert problem (A1.3-4) is depicted in Fig.13.
\vskip .4in
\psdump{p013.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000474
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 17:59:05 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 173 281 439 510
%%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
57.0 608.5 translate 0.630 -0.630 scale
0.500 setlinewidth
n 506.053 181.200 m 514.000 179.000 l 508.023 184.681 l gs 2 setlinejoin col-1 s gr
n 607.958 344.990 190.737 -172.168 -119.512 arc
gs col-1 s gr
n 245.536 184.029 m 239.000 179.000 l 247.133 180.361 l gs 2 setlinejoin col-1 s gr
n 172.145 332.468 167.398 -4.615 -66.461 arcn
gs col-1 s gr
n 594.612 296.347 177.067 117.082 172.650 arc
gs col-1 s gr
n 157.077 294.769 183.530 63.489 7.587 arcn
gs col-1 s gr
% Polyline
n 379 479 m 379 179 l gs col-1 s gr
n 377.000 187.000 m 379.000 179.000 l 381.000 187.000 l gs 2 setlinejoin col-1 s gr
n 194 154 m 194 154 l gs col-1 s gr
% Polyline
n 559 319 m 554 319 l gs col-1 s gr
% Polyline
n 199 319 m 559 319 l gs col-1 s gr
n 551.000 317.000 m 559.000 319.000 l 551.000 321.000 l gs 2 setlinejoin col-1 s gr
/Times-Roman findfont 15.00 scalefont setfont
354 204 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
264 219 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
264 464 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
509 309 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
469 414 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
389 449 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
494 209 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
519 314 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
504 219 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 469 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
364 209 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
399 454 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
254 309 m 
gs 1 -1 scale (S) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
264 314 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
389 334 m 
gs 1 -1 scale (Q) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
399 329 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
404 329 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
274 224 m 
gs 1 -1 scale (4) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
479 419 m 
gs 1 -1 scale (4) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
519 519 m 
gs 1 -1 scale (Z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
529 519 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
544 519 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
554 514 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
564 514 m 
gs 1 -1 scale (N) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
574 514 m 
gs 1 -1 scale (x) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
579 514 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
364 334 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
599 519 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
594 514 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
354 334 m 
gs 1 -1 scale (Q) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
369 344 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
344 334 m 
gs 1 -1 scale (s) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
349 344 m 
gs 1 -1 scale (3) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
529 174 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
539 179 m 
gs 1 -1 scale (+) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
214 174 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
224 179 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
184 519 m 
gs 1 -1 scale (Fig. 13.) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
239 519 m 
gs 1 -1 scale (The Riemann-Hilbert problem for the function) col-1 show gr
showpage
$F2psEnd

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



It is  worth noticing that:
$$\eqalign{
&e^{N\xi_{+}(z)} = e^{N\xi_{-}(z)},\quad z\in \gamma_{+} \cup
\gamma_{-} 
\cup i\R \cup (-\infty , -z_{2}] \cup [z_{2}, \infty),\cr
&e^{N\xi_{+}(z)} = (-1)^{n}e^{N\xi_{-}(z)},\quad z\in [-z_{1},
z_{1}],\cr} 
$$
and that the triangular structure of the jump matrices corresponding
to the infinite branches of $\Sg$ is consistent with the exponential decay
of the exponent $e^{N\xi(z)}$. On the contrary, the matrix $G(z)$ oscillates
on the intervals $[\pm z_{1}, \pm z_{2}]$ and the entry $G_{21}(z)$
exponentially grows (if $q_{21}\neq 0$) on the interval $[-z_{1},z_{1}]$.

Before passing to the asymptotic analysis of the problem (A1.3-4)
let us make three more comments:

(1). Because of the normalization condition (10.10), any
monodromy RH problem of the type (A1.3-4) has the same jump matrices
on $(-\infty, -z_{1}]\cup [z_{1}, \infty)$ .

(2). On the line $i\R$,  Re $\xi(z)$ approches its minimum at $z=0$
and this minimum coincides with the positive parameter $\delta_{0}$ in
(10.120):
$$
\text {Re}\, \xi(z) \ge \delta_{0}, \qquad z\in i\R.
\eqno (A1.5)
$$


(3). On the segment $[-z_{1}, z_{1}]$, Re $\xi(z)$ approches
 its maximum at $z=0$:
$$
\text {Re}\, \xi(z) \le \delta_{0}, \qquad z\in [-z_{1}, z_{1}].
\eqno (A1.6)
$$


\vskip .2in
Let us denote by $Z^{*}(z), G^{*}(z),$ etc., the corresponding
objects assosiated with the  model equation
(10.1), (10.32), keeping  the notation $Z(z), G(z),$ etc., for the
orthogonal polynomial
RH-problem (5.16-18). Let us also introduce an auxiliary function,
$$
\hat Z(z) = e^{(\la_{n}
-\la^{*}_{n})\sg_{3}}\Gamma^{*}_{0}\Gamma^{-1}_{0}Z(z). 
$$

Consider now the matrix ratio
$$
X(z) = \hat Z(z)Z^{*-1}(z).
$$
The matrix-valued function $X(z)$ solves the following RH problem (see
Fig.14 below): 
$$\eqalignno{
X(\infty) &= I,
& (A1.7) \cr
X_{+}(z) &= X_{-}(z)F(z),\qquad z\in  \Sg^{*} = \Sg - (-\infty, -z_{1}]\cup
[z_{1}, \infty),
& (A1.8)}
$$
where
$$
F(z) = Z^{*}_{-}(z)G(z)G^{*-1}(z)Z^{*-1}_{-}(z),
$$
and it has no jump on $(-\infty, -z_{1}]\cup
[z_{1}, \infty)$, which follows from the comment (1) above.


Our aim now is to show that (cf. (10.153)):
$$
|I-F^{-1}(z) | = O(N^{-2/3}),
\eqno (A1.9)
$$
uniformly in $z\in \Sg^{*}$. To that end we first notice that the
equations (10.124) yield the following estimates for the canonical
solutions of the equations (10.1), (10.32) : 
$$\eqalignno{
|\Psi^{*}_{2,3}(z)e^{N\xi(z)\sg_{3}}| &< CN^{1/6},
\quad z\in \gamma^{u}_{+} \cap 
\{ z : |z - z_{1}|\leq \rho_{1}\} ,
& (A1.10 a)\cr
|\Psi^{*}_{2,3}(z)e^{N\xi(z)\sg_{3}}| &< C,
\quad z\in \gamma^{u}_{+} \cap 
\{ z : |z - z_{1}|\geq \rho_{1}\},
& (A1.10 b)\cr
|\Psi^{*}_{1,8}(z)e^{N\xi(z)\sg_{3}}| &< CN^{1/6},
\quad z\in \gamma^{d}_{+} \cap 
\{ z : |z - z_{1}|\leq \rho_{1}\},
& (A1.11 a)\cr
|\Psi^{*}_{1,8}(z)e^{N\xi(z)\sg_{3}}| &< C,
\quad z\in \gamma^{d}_{+} \cap 
\{ z : |z - z_{1}|\geq \rho_{1}\},
& (A1.11 b)\cr
|\Psi^{*}_{3,8}(z)e^{N\xi(z)\sg_{3}}| &< CN^{1/6},
\quad z\in [z_{1}-\rho_{1},z_{1}],
& (A1.12)\cr
|\Psi^{*}_{3}(z)e^{N\xi(z)\sg_{3}}| &< C,
\quad z\in i\R \cup [0,z_{1}],
& (A1.13)\cr
|\Psi^{*}_{8}(z)e^{N\xi(z)\sg_{3}}| &< C,
\quad z\in -i\R \cup [0,z_{1}],
& (A1.14)\cr}
$$
where
$$
\rho_{1}< \text{min}\{z_{1},z_{2} - z_{1}\},
$$
and similar estimates involving $\Psi^{*}_{4,5,6,7}$, the line
$\gamma_{-}$, and the
point $-z_{1}$ (use of the symmetry $z\to -z$).

 

When $z$ runs along $\Sg^{*}$, the quantity $|Z^{*}_{-}(z)|$ always
coincides 
with the l.h.s. of one of the inequalities  (A1.10-14). This
immediately yields 
(see the inequalities (A1.10-12)) the estimate
$$
|Z^{*}_{-}(z)| \leq CN^{1/6}
\eqno (A1.15),
$$
uniformly on $\gamma _{+}\cup \gamma _{-}\cup [-z_{1},-z_{1}+\rho_{1}]
\cup [z_{1}-\rho_{1}, z_{1}]$. Taking into account
(10.115), we conclude from (A1.15) that uniformly on
$\gamma_{\pm}$ we have that
$$
|I-F(z)|\leq CN^{-2/3}e^{-2N|\text{Re}\, \xi(z)|},
\eqno (A1.16)
$$
On the imaginary line, due to (A1.13-14), estimate (A1.15) can
be replaced by the estimate,
$$
|Z^{*}_{-}(z)| \leq C.
\eqno (A1.17)
$$
By virtue of (10.122), this implies that inequality
$$
|I-F(z)|\leq CN^{-1}e^{-2N(\text{Re}\, \xi(z)- \delta_{0})}
\eqno (A1.18)
$$
holds on $i\R$.
Note, that because of (A1.5), there is enough of the exponential decay
in the factor $e^{-2N\xi(z)}$to balance the exponential growth in $s_{3}$.


An exponential growth of the entry $G_{21}$ on the interval $[-z_{1},
z_{1}]$ 
 is compensated by the exponential
decay of $q^{0}$ (see (10.123)). More precisely,
on the part, $[-z_{1},z_{1}]\setminus [-z_{1}+\rho_{1},z_{1}-\rho_{1}]$,
 of  the interval $[-z_{1},z_{1}]$ we have
(see (A1.15), (10.123), and (A1.6)) that
$$
|I-F(z)| \leq C N^{-2/3}e^{-c_{0}N},\quad
c_{0}>0,
\eqno (A1.19)
$$
while on the part, $[-z_{1}+\rho_{1},z_{1}-\rho_{1}]$ we can again
use (A1.13-14) and replace the estimate
(A1.15) by (A1.17), which gives for this part that
$$
|I-F(z)|\leq CN^{-1}.
\eqno (A1.20)
$$

The inequalities (A1.16, 18-20) prove the asymptotic formula (A1.9).
Notice, that the same inequalities yield the estimate for the corresponding
$L_{2}$-norm of $I-F^{-1}(z)$ :
$$
||I-F^{-1}||_{L_{2}(\Sg^{*})} = O(N^{-2/3}).
\eqno (A1.21)
$$
The more detailed description of the asymptotic behaviour of $F(z)$
with respect to the different pieces of the contour $\Sg^{*}$ is given in
Fig.14.  
\vskip .4in
\psdump{p014.ps}
%!PS-Adobe-2.0
%%Title: /tmp/xfig-fig000483
%%Creator: fig2dev Version 2.1.8 Patchlevel 0
%%CreationDate: Fri Feb  7 18:02:12 1997
%%For: itsa@painleve (Alexander Its)
%%Orientation: Portrait
%%BoundingBox: 103 268 509 524
%%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
 /DrawEllipse {
        /endangle exch def
        /startangle exch def
        /yrad exch def
        /xrad exch def
        /y exch def
        /x exch def
        /savematrix mtrx currentmatrix def
        x y translate xrad yrad scale 0 0 1 startangle endangle arc
        savematrix setmatrix
        } def

        end
/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def
/$F2psEnd {$F2psEnteredState restore end} def
%%EndProlog

$F2psBegin
0 setlinecap 0 setlinejoin
65.0 608.0 translate 0.630 -0.630 scale
0.500 setlinewidth
n 77.077 294.769 183.530 63.489 7.587 arcn
gs col-1 s gr
n 165.536 184.029 m 159.000 179.000 l 167.133 180.361 l gs 2 setlinejoin col-1 s gr
n 92.145 332.468 167.398 -4.615 -66.461 arcn
gs col-1 s gr
n 674.612 296.347 177.067 117.082 172.650 arc
gs col-1 s gr
n 586.053 181.200 m 594.000 179.000 l 588.023 184.681 l gs 2 setlinejoin col-1 s gr
n 687.958 344.990 190.737 -172.168 -119.512 arc
gs col-1 s gr
        [4.000000] 0 setdash
% Ellipse
n 499 319 89 89 0 360 DrawEllipse gs col-1 s gr
        [] 0 setdash
        [4.000000] 0 setdash
% Ellipse
n 258 321 89 89 0 360 DrawEllipse gs col-1 s gr
        [] 0 setdash
% Polyline
n 379 419 m 379 219 l gs col-1 s gr
n 377.000 227.000 m 379.000 219.000 l 381.000 227.000 l gs 2 setlinejoin col-1 s gr
n 379 259 m 379 259 l gs col-1 s gr
% Polyline
n 264 319 m 504 319 l gs col-1 s gr
n 496.000 317.000 m 504.000 319.000 l 496.000 321.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 189 199 m 89 299 l gs col-1 s gr
        [] 0 setdash
n 96.071 294.757 m 89.000 299.000 l 93.243 291.929 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 179 439 m 89 324 l gs col-1 s gr
        [] 0 setdash
n 92.355 331.533 m 89.000 324.000 l 95.505 329.067 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 239 259 m 204 299 l gs col-1 s gr
        [] 0 setdash
n 210.773 294.296 m 204.000 299.000 l 207.763 291.662 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 234 374 m 199 324 l gs col-1 s gr
        [] 0 setdash
n 201.949 331.701 m 199.000 324.000 l 205.226 329.407 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 569 199 m 659 294 l gs col-1 s gr
        [] 0 setdash
n 654.950 286.817 m 659.000 294.000 l 652.046 289.568 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 574 439 m 659 334 l gs col-1 s gr
        [] 0 setdash
n 652.412 338.960 m 659.000 334.000 l 655.521 341.476 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 519 374 m 549 329 l gs col-1 s gr
        [] 0 setdash
n 542.898 334.547 m 549.000 329.000 l 546.226 336.766 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 519 264 m 549 304 l gs col-1 s gr
        [] 0 setdash
n 545.800 296.400 m 549.000 304.000 l 542.600 298.800 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 359 319 m 359 169 l gs col-1 s gr
        [] 0 setdash
n 357.000 177.000 m 359.000 169.000 l 361.000 177.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 399 319 m 399 464 l gs col-1 s gr
        [] 0 setdash
n 401.000 456.000 m 399.000 464.000 l 397.000 456.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 379 259 m 399 259 l  399 169 l gs col-1 s gr
        [] 0 setdash
n 397.000 177.000 m 399.000 169.000 l 401.000 177.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 379 379 m 359 379 l  359 464 l gs col-1 s gr
        [] 0 setdash
n 361.000 456.000 m 359.000 464.000 l 357.000 456.000 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 259 319 m 304 394 l gs col-1 s gr
        [] 0 setdash
n 301.599 386.111 m 304.000 394.000 l 298.169 388.169 l gs 2 setlinejoin col-1 s gr
        [4.000000] 0 setdash
% Polyline
n 494 324 m 449 394 l gs col-1 s gr
        [] 0 setdash
n 455.008 388.352 m 449.000 394.000 l 451.644 386.189 l gs 2 setlinejoin col-1 s gr
/Times-Roman findfont 15.00 scalefont setfont
264 314 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
294 314 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
304 309 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
309 309 m 
gs 1 -1 scale (c) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
314 309 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
324 314 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
179 319 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
209 319 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
224 314 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
234 309 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
234 309 m 
gs 1 -1 scale (_) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
234 324 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
244 319 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
419 314 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
449 314 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
459 309 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
464 309 m 
gs 1 -1 scale (c) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
469 309 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
479 314 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
514 324 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
544 324 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
559 319 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
569 314 m 
gs 1 -1 scale (2) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
569 314 m 
gs 1 -1 scale (_) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
569 329 m 
gs 1 -1 scale (3) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
579 324 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
59 319 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
89 319 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
99 314 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
104 314 m 
gs 1 -1 scale (c) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
109 314 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
119 319 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
639 319 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
669 319 m 
gs 1 -1 scale (e) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
679 314 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
684 314 m 
gs 1 -1 scale (c) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
689 314 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
699 319 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
359 154 m 
gs 1 -1 scale (I+O\() col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
389 154 m 
gs 1 -1 scale (N) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
404 149 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
414 149 m 
gs 1 -1 scale (1  ) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
424 154 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
269 329 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
279 329 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
284 339 m 
gs 1 -1 scale (1  ) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
469 374 m 
gs 1 -1 scale (r) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
279 374 m 
gs 1 -1 scale (r) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
474 384 m 
gs 1 -1 scale (1  ) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
284 384 m 
gs 1 -1 scale (1  ) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
604 179 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 15.00 scalefont setfont
139 174 m 
gs 1 -1 scale (g) col-1 show gr
/Symbol findfont 12.00 scalefont setfont
614 184 m 
gs 1 -1 scale (+) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
149 179 m 
gs 1 -1 scale (-) col-1 show gr
/Symbol findfont 18.00 scalefont setfont
259 319 m 
gs 1 -1 scale (.) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
519 539 m 
gs 1 -1 scale (X) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
529 539 m 
gs 1 -1 scale (\(z\)) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
359 494 m 
gs 1 -1 scale (I+O\(N) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
404 489 m 
gs 1 -1 scale (-) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
414 489 m 
gs 1 -1 scale (1) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
424 494 m 
gs 1 -1 scale (\)) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
469 329 m 
gs 1 -1 scale (z) col-1 show gr
/Times-Roman findfont 12.00 scalefont setfont
474 339 m 
gs 1 -1 scale (1  ) col-1 show gr
/Times-Roman findfont 14.00 scalefont setfont
244 539 m 
gs 1 -1 scale (The Riemann-Hilbert problem for the function) col-1 show gr
/Times-Roman findfont 15.00 scalefont setfont
194 539 m 
gs 1 -1 scale (Fig. 14.) col-1 show gr
showpage
$F2psEnd

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

Exactly the same as in Sec.10.5 arguments based on the Cauchy integral
representation for the function $X(z)$,
$$
X(z) = I + {1\over 2\pi i}\int _{\Sg^{*}} \rho(\nu) \left (I- F^{-1}(\nu)
\right ){d\nu \over {\nu - z}},
\eqno (A1.22)
$$
$$ 
\rho(z) = X_{+}(z),\qquad  \rho = I + C_{+}[\rho \left (I- F^{-1}\right )],
$$
show that the estimates (A1.9), (A1.21) imply that
$$
X(z)= I + O\left (\frac{1}{(1+|z|)N^{2/3}}\right ),
$$
uniformly in $z\in K$ for any closed $K \subset \C\setminus\Sg^{*}$. This
estimate, in turn, leads to the asymptotic equations 
$$\eqalignno{
\lambda_{n} &= \lambda_{n}^{*} + O\left (\frac{1}{N^{2/3}}\right ) =
NC_{n} -{1\over 8}\ln \frac{g}{\lambda} + q + {1\over 2}\ln 2\pi + 
O\left ( N^{-2/3}\right ),
& (A1.23 a)\cr
R_{n} &= R^{*}_{n} +O\left (N^{-2/3}\right ) =
\frac{-t -(-1)^{n}\sqrt{t^{2}-4\la g}}{2g} + O\left
( N^{-2/3}\right ), 
& (A1.23 b) \cr
\Psi(z) &\equiv \Psi_{n}(z)= 
\Pi^{*} \left \{I + O\left (\frac{1}{(1+|z|)N^{2/3}}\right ) \right
\}\Psi^{*}(z),\qquad z\in K\subset \C \setminus \Sg^{*}.\cr
& & (A1.23 c)\cr}
$$
The constant diagonal matrix
$\Pi^{*}$ in (A1.23c) satisfies the estimate
$$
\Pi^{*} = I + O(N^{-2/3}).
$$



Denote
$$
\hat \rho(z)  = \rho(z)(I-F^{-1}(z)),
$$
the density function in the integral representation (A1.22). One can
show that: 

(a)  at the points of
self-intersection of the contour $\Sg^{*}$, i.e., at the points
$s=0,\; \pm 
z_{1}$, we have the equation 
$$
\sum_{j=1}^{n_{0}(s)}\lim_{z\to s,\, z\in \Sg^{*}_{j}(s)}\rho(z) =0;
\qquad s=0,\,\pm z_1,
$$
where  $\Sg^{*}_{j}(s),\; j=1,\dots,n_{0}(s),$ are the smooth pieces of
the contour
$\Sg^{*}$ that meet at the point $s$. 

(b) $\hat \rho(z)$ has a small $H^{1}(\Sg^{*})$-norm.

Having the properties (a), (b) and
using some general facts proven in [BDT], one can easily extend the
estimate (A1.23c) onto the whole $z$-plane. 

We would like to notice that the  method, presented in this appendix,
gives a somewhat weaker estimate of the error term in 
the equations (A1.23a,b,c) than we proved in the section 10.5. 
To improve  the error term in (A1.23a,b,c) to the one of the
order of $N^{-1}$ (within the Riemann-Hilbert problem (A1.7-8)) we
need an
impovement of the asymptotic analysis of the direct monodromy problem
in the section 10.4. Namely, we have to use the ansatz (10.32)
for $R_{n}$ and perform the WKB-calculations up to higher order 
terms in $N^{-1}$ (see e.g. [Kap]).
There are no
principle difficulties in this approach, however, technically it 
is quite involved. In the main text we circumvented this difficulty by 
using more advanced (and simultaniously more explicit !) Deift-Zhou 
technique for constructing the model solution $\Psi^{0}(z)$ for 
the orthogonal polynomial Riemann-Hilbert problem (5.16-18).

\vskip 5mm

{\it Acknowledgement.} This work was supported in part by the National
Science Foundation, Grant No. DMS--9623214 (P.B.) and Grant
No. DMS--9501559 
(A.I.), and this support is gratefully acknowledged.

\vskip 5mm
 

\beginsection References \par

\item {[ASM]} M. Adler, T. Shiota, and P. van Moerbeke, Random matrices,
vertex operators and the Virasoro algebra, {\it Phys. Letters} {bf A208},
101--112 (1995).

\item {[BDT]} R. Beals, P. A. Deift, and C. Tomei, Direct and inverse
scattering on the line. Mathematical Surveys and Monographs {\bf 28}.
AMS Providence, Rhode Island (1988).

%\item {[BTW]} E. L. Basor, C. A. Tracy, and H. Widom,
%Asymptotics of level-spacing distribution of random matrices,
%{\it Phys. Rev. Lett.} {\bf 69}, 5--8 (1992). Errata:
%{\it Phys. Rev. Lett.} {\bf 69}, 2880 (1992).

\item {[BIZ]} D. Bessis, C. Itzykson, and J.-B. Zuber,
Quantum field theory techniques in graphical enumeration,
{\it Adv. Applied Math.} {\bf 1}, 109--157 (1980).

\item {[Ble]} P. M. Bleher, 
Quasi-classical expansion and the problem of quantum chaos,
{\it Lect. Notes Math.} {\bf 1469}, Eds. J. Lindenstrauss and
V. D. Milman, 60--89 (1991).

%\item {[BLN]} S. S. Bonan, D. S. Lubinsky, and P. Nevai,
%Orthogonal polynomials and their derivatives,
%{\it SIAM J. Math. Anal.} {\bf 18}, 1163--1176 (1987).

\item {[BPS]} A. Boutet de Monvel, L. A. Pastur, and M. Shcherbina,
On the statistical mechanics approach in the random matrix
theory. Integrated density of states,
{\it J. Statist. Phys.} {\bf 79}, 585--611 (1995).

\item {[BB]} M. J. Bowick and E. Br\'ezin,
Universal scaling of the tail of the density of eigenvalues in random
matrix models, {\it Phys. Letts.} {\bf B268}, 21--28 (1991).

\item {[BIPZ]} E. Br\'ezin, C. Itzykson, G. Parisi, and J. B. Zuber,
{\it Commun. Math. Phys.} {\bf 59}, 35--51 (1978).

\item {[BK]} E. Br\'ezin and V. A. Kazakov,
Exactly solvable field theories of closed strings,
{\it Phys. Lett. B} {\bf 236}, 144--150 (1990). 

\item {[BZ]} E. Br\'ezin and A. Zee,
Universality of the correlations between eigenvalues of large random
matrices, {\it Nuclear Physics B} {\bf 402}, 613--627 (1993).

%\item {[BZ2]} E. Br\'ezin and A. Zee,
%Universal relation between Green functions in random matrix theory,
%{\it Nuclear Physics B} {\bf 453}, 531--551 (1995).

\item {[CG]} K. Clancey and I. Gohberg, Factorization of matrix
functions and singular integral operators. Operator Theory. {\bf 3},
Birkh{\"{a}}user Verlag Basel (1981).

%\item {[CKT]} Y. Chen, K. J. Kasper, and C. A. Tracy,
%Largest eigenvalue distribution in the double scaling limit of matrix
%models: a Coulomb fluid approach,
%{\it J. Phys. A}, {\bf 28}, L207--L211 (1995).

\item {[CCM]} G. M. Cicuta, L. Molinari, and Montaldi,
Large $N$ phase transition in low dimensions,
{\it Mod. Phys. Lett.} {\bf A1}, 125, 1986.

\item {[CM]} \v C. Crnkovi\' c and G. Moore,
Multicritical multi-cut matrix models, 
{\it Phys. Lett. B} {\bf 257}, (1991).

\item {[DKM]} P. A. Deift, T. Kriecherbauer, and K. T-R. McLaughlin, 
New results for the asymptotics of orthogonal polynomials and related
problems via the inverse spectral method. Preprint, 1996.

\item {[DIZ]} P. A. Deift, A. R. Its, and X. Zhou, A Riemann-Hilbert
 approach to asymptotic problems arising in the theory
of random matrix models, and also in the theory of integrable
statistical mechanics, {\it Ann. of Math.} (in print).

\item {[DZ1]} P. A. Deift and X. Zhou, A steepest descent method for
oscillatory Riemann-Hilbert problems. Asymptotics for the MKdV equation,
{\it Ann. of Math.} {\bf 137}, 295--368 (1995).

\item {[DZ2]} P. A. Deift and X. Zhou, Asymptotics for the
Painlev{\'{e}} II equation, {\it Commun. Pure Appl. Math.} {\bf 48},
277--337 (1995). 

\item {[DZ3]} P. A. Deift and X. Zhou, Long-time asymptotics for
integrable systems. Higher order theory,
{\it Commun. Math. Phys.} {\bf 165},
175--191 (1994). 


\item {[Dem]} K. Demeterfi,
Two-dimensional quantum gravity, matrix models and string theory,
{\it Internat. J. Modern Phys. A} {\bf 8}, 1185--1244 (1993).

\item {[DSS]} M. R. Douglas, N. Seiberg, and S. H. Shenker,
Flow and instability in quantum gravity,
{\it Phys. Lett. B} {\bf 244}, 381--386 (1990).  

\item {[DS]} M. R. Douglas and S. H. Shenker,
Strings in less than one dimension,
{\it Nucl. Phys. B} {\bf 335}, 635--654 (1990).

\item {[Dys]} F. J. Dyson,
Correlation between the eigenvalues of a random matrix,
{\it Commun. Math. Phys.} {\bf 19}, 235--250 (1970).

%\item {[Dys2]} F. J. Dyson,
%A class of matrix ensembles,
%{\it J. Math. Phys.} {\bf 13}, 90--97 (1972).

\item {[Fed]} M. V. Fedorjuk, Asymptotic methods for linear ordinary
differential equations, Mos\-cow, Nauka (1983) (in Russian).

\item {[FI]} A. S. Fokas and A. R. Its, The isomonodromy method and the
Painlev{\'{e}} equations, {\it in the book: Important Developments in Soliton
Theory}, A. S. Fokas, V. E. Zakharov (eds.), Berlin, Heidelberg, New York,
Springer (1993).

\item {[FN]} H. Flaschka and A. Newell, Monodromy and spectral preserving deformations, {\it Commun. Math. Phys.} {\bf 76}, 67--116 (1980).

\item {[FIK1]} A. S. Fokas, A. R. Its, and A. V. Kitaev,
Isomonodromic approach in the theory of two-dimensional quantum
gravity, {\it Usp. Matem. Nauk } {\bf 45}, 6,  135--136 (1990) (in Russian).

\item {[FIK2]} A. S. Fokas, A. R. Its, and A. V. Kitaev,
Discrete Painlev\'e equations and their appearance in quantum gravity,
{\it Commun. Math. Phys.} {\bf 142}, 313--344 (1991).

\item {[FIK3]} A. S. Fokas, A. R. Its, and A. V. Kitaev, The matrix model
of the two-dimensional quantum gravity and isomonodromic solutions
of the discrete Painlev{\'{e}} equations, {\it in the book :  Zap. Nauch.
Semin. LOMI } {\bf 187}, 12 (1991) (in Russian).

\item {[FIK4]} A. S. Fokas, A. R. Its, and A. V. Kitaev,
The isomonodromy approach to matrix models in 2D quantum gravity,
{\it Commun. Math. Phys.} {\bf 147}, 395--430 (1992).

\item {[FIZ]} A. S. Fokas, A. R. Its, and X. Zhou, Continuous and discrete
Painlev{\'{e}} equations, {\it in the book: Painlev{\'{e}} Transcsndents.
Their Asymptotics and Physical Applications. NATO ASI Series: Series B: Physics} {\bf 278} , Plenum Press, N.Y. (1992).

\item {[FMA]} A. S. Fokas, U. Mugan, and M. J. Ablowitz, A method of
linearization for Painlev{\'{e}} equations: Painlev{\'{e}} IV, V,
{\it Physica D } {\bf 30}, 247--287 (1988).

\item {[For]} P. J. Forrester,
The spectrum edge of random matrix ensembles, {\it Nucl. Phys.} {\bf
B402}, 709--728 (1993).

\item {[Fre]} G. Freud,
On the coefficients in the recursion formulae of orthogonal
polynomials, {\it Proc. Royal Irish Acad.} {\bf 76A}, 1--6 (1976).

%\item {[Fre2]} G. Freud,
%{\it Orthogonal polynomials}, Akad\'emiai Kiad\'o/Pergamon Press,
%Budapest - Oxford, 1971.

\item {[GM]} D. J. Gross and A. A. Migdal,
Nonperturbative two-dimensional quantum gravity,
{\it Phys. Rev. Lett.} {\bf 64}, 127--130 (1990).

\item {[GRP]} B. Grammaticos, A. Ramani, V. Papageorgiou, Do integrable
mappings have the Painlev{\'{e}} property? {\it Phys. Rev. Lett.} {\bf 67},
1825--1828 (1991). 

\item {[IN]} A. R. Its and V. Yu. Novokshenov,
The isomonodromic deformation method in the theory of Painlev\'e
equations. {\it Lecture Notes in Math.} {\bf 1191}. Springer-Verlag,
Berlin -- New York, 1986.

\item {[IZ]} C. Itzykson and J.-B. Zuber,
The planar approximation. II,
{\it J. Math. Phys.}, {\bf 21}, 411--421 (1980).

%\item {[Joh]} K. Johansson,
%On fluctuations of eigenvalues of random hermitian matrices,
%Preprint TRITA-MAT-1995-MA-19, Royal Institute of Technology,
%Stockholm, 1995.

\item {[JMU]} M. Jimbo, T. Miwa, and K. Ueno, Monodromy preserving deformation
of linear ordinary differential equations with rational 
coefficients I, {\it Physica D2}, 306--352 (1981). 

%\item {[KPW]} R. D. Kamien, H. D. Politzer, and M. B. Wise,
%Universality of random-matrix predictions for the statistics of energy
%levels, {\it Phys. Rev. Lett.} {\bf 60}, 1995--1998 (1988).

\item {[Kap]} A. A. Kapaev,
WKB method for $2\times 2$ systems of linear ordinary differential
equations with rational coefficients, Preprint \# 96-6, 
Indiana University -- Purdue University at Indianapolis, 1996.

%\item {[LL1]} A. L. Levin and D. S. Lubinsky,
%Christoffel functions, orthogonal polynomials, and Nevai's conjecture
%for Freud's weights, {\it Constr. Approx.} {\bf 8}, 463--535 (1992);
%Erratum: {\it Constr. Approx.} {\bf 11}, 417--418 (1995).
 
\item {[LL]} A. L. Levin and D. S. Lubinsky,
Orthogonal polynomials and Christoffel functions for $\exp(-|x|^\a),\;
\a\le 1$, {\it J. Approx. Theory} {\bf 80}, 219--252 (1995).

\item {[LQ]} J. S. Lew and D. A. Quarles, Jr.,
Nonnegative solutions of a nonlinear recurrence,
{\it J. Approx. Theory} {\bf 38}, 357--379 (1983).

\item {[LiS]} G. Litvinchuk and T. Spitkovskii, Factorization of measurable
matrix functions. Birk\-h{\"{a}}user Verlag, Basel, 51 (1987).
 
\item {[LMS]} D. S. Lubinsky, H. N. Mhaskar, and E. B. Saff,
A proof of Freud's conjecture for exponential weights,
{\it Constr. Approx.} {\bf 4}, 65--83 (1988).

\item {[LS]} D. S. Lubinsky and E. B. Saff,
Strong asymptotics for extremal polynomials associated with weights on
$\R$, {\it Lect. Notes Math.} {\bf 1305} (1988).


%\item {[Lub1]} D. S. Lubinsky, 
%A survey of general orthogonal polynomials for weights on finite and
%infinite intervals,
%{\it Acta Appl. Math.} {\bf 10}, 237--296 (1987).

%\item {[Lub2]} D. S. Lubinsky,
%An update on orthogonal polynomials and weighted approximation on the
%real line,
%{\it Acta Applic. Math.}, {\bf 33}, 121--164 (1993).

\item {[Mag1]} A. P. Magnus,
A proof of Freud's conjecture about orthogonal polynomials related to
$|x|^\rho\exp(-x^{2m})$ for integer $m$. In: {\it Polyn\^omes
Orthogonaux et Applications. Proceedings Bar-le-Duc 1984},
Eds. C. Brezinski e.a., {\it Lecture Notes Math.} {\bf 1171}, 362--372
(1985). 

\item {[Mag2]} A. P. Magnus,
On Freud's equations for exponential weights,
{\it J. Approx. Theory} {\bf 46}, 65--99 (1986).

\item {[Mag3]} A. P. Magnus,
Painlev{\'{e}}-type differential equations for the recurrence coefficients
of semi-classical orthogonal polynomials,
{\it Journal of Computational and Applied Mathematics} {\bf 57}, 215--237 (1995).

\item {[Mag4]} A. P. Magnus,
Freud's equations for orthogonal polynomials as 
discrete Painlev{\'{e}} equations. {\it preprint} (1996).

\item {[MNZ]} A. M\'at\'e, P. Nevai, and T. Zaslavsky,
Asymptotic expansion of ratios of coefficients of orthogonal
polynomials with exponential weights,
{\it Trans. Amer. Math. Soc.} {\bf 287}, 495--505 (1985).

\item {[Meh1]} M. L. Mehta,
{\it Random Matrices}, 2nd ed., Academic Press, Boston, 1991. 

\item {[Meh2]} M. L. Mehta,
Painlev\'e transcendents in the theory of random matrices.
{\it An introduction to methods of complex analysis and geometry for
classical mechanics and non-linear waves (Chamonix, 1993),} 197--208,
Fronti\`eres, Gif-sur-Yvette, 1994.

\item {[Moo]} G. Moore,
Matrix models of 2D gravity and isomonodromic deformations, {\it
Progr. Theor. Phys. Suppl.} {\bf 102}, 255--285 (1990).

\item {[NPCQ]} F. W. Nijhoff, V. G. Papageorgiou, H. W. Capel, and
G. R. W. Quispel, The lattice Gel'fand-Dikii hierarchy, {\it Inv. Probl.}
{\bf 8}, 597--621 (1992).

\item {[Nev1]} P. Nevai,
Asymptotics for orthogonal polynomials associated with $\exp(-x^4)$,
{\it SIAM J. Math. Anal.} {\bf 15}, 1177--1187 (1984).

\item {[Nev2]} P. Nevai,
G\'eza Freud, orthogonal polynomials and Christoffel functions. A case
study, {\it J. Approx. Theory} {\bf 48}, 3--167 (1986). 

\item {[Nev3]} P. Nevai,
Orthogonal polynomials.
In: {\it Linear and complex analysis. Problem book 3. Vol. 2. Chapter
13}, 177--187,
Eds. V. P. Havin and N. K. Nikolski, Springer-Verlag, Berlin e.a.,
1994.

\item {[Pas]} L. Pastur,
On the universality of the level spacing distribution for some
ensembles of random matrices,
{\it Lett. Math. Phys.} {\bf 25}, 259--265 (1992).

\item {[PS]} L. Pastur and M. Shcherbina,
Universality of the local eigenvalue statistics for a class of unitary
invariant random matrix ensembles. Preprint, 1996. 

\item {[PeS]} V. Periwal and D. Shevitz,
Exactly solvable unitary matrix models: multicritical potentials and
correlations, {\it Nucl. Phys. B} {\bf 333}, 731--746 (1990). 

\item {[PR]} M. Plancherel and W. Rotach,
Sur les valeurs asymptotiques des polynomes d'Hermite
$H_n(x)=(-1)^ne^{x^2/2} d^n(e^{-x^2/2})/dx^n$,
{\it Comment. Math. Helvet.} {\bf 1}, 227--254 (1929).

\item {[Rah]} E. A. Rahmanov,
Strong asymptotics for orthogonal polynomials,
{\it Methods of approximation theory in complex analysis and
mathematical physics (Leningrad, 1991)}, 71--97, {\it Lect. Notes
Math.} {\bf 1550}, Springer, Berlin, 1993. 

\item {[She]} R.-C. Sheen,
Plancherel--Rotach-type asymptotics for orthogonal polynomials
associated with $\exp(-x^6/6)$, 
{\it J. Approx. theory} {\bf 50}, 232--293 (1987).

\item {[Sho]} J. A. Shohat,
A differential equation for orthogonal polynomials, {\it Duke
Math. J.} {\bf 5}, 401--417 (1939). 

\item {[Sib]} Y. Sibuya,
{\it Linear differential equations in the complex domain: problems of
analytic continuation.} Transl. Math. Monogr., {\bf 82}, AMS,
Providence, RI, 1990.

\item {[Sze]} G. Szeg\"o,
{\it Orthogonal Polynomials}, 3rd ed., AMS, Providence, 1967.

\item {[TW1]} C. A. Tracy and H. Widom,
Introduction to random matrices, In: {\it Geometric and quantum
aspects of integrable systems (Scheveningen, 1992),} 103--130, Lecture
Notes in Phys. {\bf 424}, Springer, Berlin, 1993.

\item {[TW2]} C. A. Tracy and H. Widom,
Level-spacing distribution and the Airy kernel, {\it
Commun. Math. Phys.} {\bf 159}, 151--174 (1994).

%\item {[TW3]} C. A. Tracy and H. Widom,
%Fredholm determinants, differential equations and matrix models, {\it
%Commun. Math. Phys.} {\bf 163}, 33--72 (1994).

%\item {[TW4]} C. A. Tracy and H. Widom,
%On orthogonal and symplectic matrix ensembles, {\it
%Commun. Math. Phys.} {\bf 177}, 727--754 (1996).

%item {[VA]} W. Van Assche,
%{\it Asymptotics for orthogonal polynomials}, Lecture Notes Math. {\bf
%1265}, (1987).

\item {[Was]} W. Wasow, Asymptotic expansions for ordinary
differential equations, Interscience-Wiley, New York (1965). 

\item {[Wit]} E. Witten,
Two-dimensional gravity and intersection theory on moduli spaces,
{\it Surveys in differential geometry (Cambridge, MA, 1990),}
243--310, Lehigh Univ., Bethlehem, PA, 1991.

\item {[Zh]} X. Zhou, Riemann-Hilbert problem and inverse scattering,
{\it SIAM J. Math. Anal.} {\bf 20}, 966--986 (1989).







\bye








