Hello!
I wonder if it is possible somehow to force MATLAB to compute ANY series for this function: ((4+3x)/(x+2))^(2x-1) as x->inf. I need to find the limit without using the limit function in MATLAB.
I tried some ways, but they don't appear to be working as MATLAB says there is an error.
I would be very thankful for your help!

댓글 수: 2

Rick Rosson
Rick Rosson 2015년 3월 7일
Please post your code and the exact error message.
Svetlana
Svetlana 2015년 3월 7일
Firstly, I tried to compute a Taylor series so I've made a substitution: t = 1/x, t->0
g = ((3/t + 4)/(1/t + 2))^(2/t - 1)
taylor(g)
Warning: Cannot compute a Taylor expansion of '((3/t + 4)/(1/t + 2))^(2/t - 1)'. Try 'series' with the 'Left', 'Right', or 'Real' option for a more general expansion. [taylor]
or:
f = ((3/t + 4)/(1/t + 2))^(2/t - 1)
series(f, t = 0, Left)
Error: The expression to the left of the equals sign is not a valid target for an assignment.

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

 채택된 답변

Roger Stafford
Roger Stafford 2015년 3월 8일
편집: Roger Stafford 2015년 3월 8일

1 개 추천

The reason you're having trouble finding that limit is that there is no finite limit! The expression goes quickly to infinity as x approaches infinity. For the same reason the expression
((3/t + 4)/(1/t + 2))^(2/t - 1)
has no Taylor series because it has a singularity at t = 0. It approaches infinity from the right and zero from the left.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

태그

질문:

2015년 3월 7일

편집:

2015년 3월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by