Non-linear equation roots

If I have the equation: w = 2k / ln[(1+k)/(1-k)] ,w ∈ (0,1) knowing that k is a root how can I show that for fixed w , -k is also a root and that k is the only root in (0,1) ?

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 5월 21일

0 개 추천

w=0.5
syms k
result=double(solve(w==2*k/log((1+k)/(1-k)),'k'))

댓글 수: 1

Monica
Monica 2013년 5월 21일
Hi Azzi, I tried the method that you told me but it returns only one root : -0.957 which is not in the interval (0,1). Did I miss something?
Thanks a lot.

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

Azzi Abdelmalek
Azzi Abdelmalek 2013년 5월 21일
편집: Azzi Abdelmalek 2013년 5월 21일

0 개 추천

You can use fzero with starting interval
w=0.5;
f=@(k) 2*k/log((1+k)/(1-k))-w
x=fzero(f,[eps 1])

카테고리

도움말 센터File Exchange에서 Optimization에 대해 자세히 알아보기

질문:

2013년 5월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by