我正在尝试绘制函数 $\frac{1}{\sqrt{x}}-\sqrt{\frac{x+1}{x}}$ 的图形。
使用
\begin{tikzpicture}
\begin{axis}[axis lines=center]
\addplot[domain=0.1:10]{1/(x^(1/2))-((x+1))/(x))^(1/2)};
\end{axis}
\end{tikzpicture}
我被告知所有值都被过滤掉了,但这个函数在这个域上定义得很好。出了什么问题?
答案1
您的(
公式错了,((x+1))/(x))
应该是((x+1)/(x))
。
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines=center,
title={$\frac{1}{\sqrt{x}}-\sqrt{\frac{x+1}{x}}$}]
\addplot+[domain=0.1:10]{1/(x^(1/2))-((x+1)/(x))^(1/2)};
\end{axis}
\end{tikzpicture}
\end{document}
要获得所有四个象限,请插入xmin
xmax
ymin
和ymax
值。
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines=center,,xmin=-10,xmax=10,ymin=-1,ymax=1,
title={$\frac{1}{\sqrt{x}}-\sqrt{\frac{x+1}{x}}$}]
\addplot+[domain=0.1:10]{1/(x^(1/2))-((x+1)/(x))^(1/2)};
\end{axis}
\end{tikzpicture}
\end{document}
根据需要适当地更改它们。