How to show function is converging towards a point or not.

조회 수: 18 (최근 30일)
T
T 2018년 10월 20일
편집: madhan ravi 2018년 10월 20일
Say F is function of n and x. Say F=(n*x)/1+(n*x)^2 Is given function then for x[0,k] where k belongs to (0,1). Show that when n tends to infinity will give converging function. Using graphs. Basically just take limit as n tends to infinity where x belongs accordingly. Please I need code as I am getting few error.
  댓글 수: 7
madhan ravi
madhan ravi 2018년 10월 20일
Where is your code that you tried?
T
T 2018년 10월 20일
편집: Walter Roberson 2018년 10월 20일
sysm n,x
X=0:k;
K=(0:1);
y = fun of n and x.
Limit((y),n,inf)
Plot(x,n,y)
Something like this

댓글을 달려면 로그인하십시오.

채택된 답변

madhan ravi
madhan ravi 2018년 10월 20일
편집: madhan ravi 2018년 10월 20일
syms n x k
assume(0<k<1) %openinterval
assumeAlso(0<=x<=k) %closedinterval 
F= (n.*x)./(1+(n.*x).^2) 
limit(F,n,inf) 
F=@(x,n) (n.*x)./(1+(n.*x).^2)
x=linspace(0,1,1000);
n=1:1000;
plot(F(x,n))
  댓글 수: 20
T
T 2018년 10월 20일
also, we used . while writing function BCS it is a way to express when we do multiplication
madhan ravi
madhan ravi 2018년 10월 20일
편집: madhan ravi 2018년 10월 20일
yes it's element wise operation , each element of x is multiplied with corresponding element of n

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by