I am trying to draw feasible area of the following LP:
\documentclass [11 pt, xcolor=pdftex,x11names,table]{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}
\setbeamercovered{invisible}
\frametitle{Linear Program}
\begin{columns}[c]
\column{0.33\textwidth}
\begin{tikzpicture}[xscale=0.01,yscale=0.01][domain=-0.5:5000]
\draw[->] [very thick] (-0.5,0) -- (5000,0) node[right] {$x_1$};
\draw[->] [very thick](0,-.5) -- (0,5000) node[above] {$x_2$};
% HERE COMES THE REST OF THE GRAPH
\end{tikzpicture}
\column{0.6\textwidth}
different piece of code
\end{columns}
\end{frame}
\end{document}
The problem I have is that when I try \begin{tikzpicture}[domain=-0.5:3500] It doesn't fit in a slide. Any suggestion to solve this problem?
EDIT: I edited MWE and used xscale and yscale and I can draw axis but still I get the error Dimention too large \end{frame}. Should I simply ignore this? Any thought?

x scale = 0.02or some small number like that (pass this as another argument afterdomain=). I would really be a good idea to post the code which includes the figure you are trying to draw. – Vivi Dec 19 '12 at 23:25semilogxaxisenvironment. – percusse Dec 19 '12 at 23:52