Removing Complex Roots and Solutions
이전 댓글 표시
I do not know how to remove complex roots from an equation (or even if it is possible.) The problem reads, "The product of three integers with spacing of 5 between them (e.g., 9, 14, 19) is 10,098. Using Matlab's built-in function for operations with polynomials, determine the three integers."
The three integers are 17, 22, and 27. My prof wants us to use the conv() and roots() command. He also said "we are ONLY concerned with real integer solutions." I would imagine he wants the output to be 17, 22 and 27 only. I need a way to either remove the complex roots, or tweak my code to only give the three real integer solutions. Below is my code. Below that are the solutions given my Matlab. Any help would be great.
CODE:
a=[1 0] b=[1 5] c=[1 10]
p=conv(a,b)
f=conv(p,c)
d=f+[0 0 0 -10098]
r=roots(d) %first root
r+5 %second root
r+10 %third root
MATLAB OUTPUT:
r =
-16.0000 +18.3848i
-16.0000 -18.3848i
17.0000 + 0.0000i
ans =
-11.0000 +18.3848i
-11.0000 -18.3848i
22.0000 + 0.0000i
ans =
-6.0000 +18.3848i
-6.0000 -18.3848i
27.0000 + 0.0000i
채택된 답변
추가 답변 (1개)
Image Analyst
2015년 4월 17일
0 개 추천
Use imag(r) to find out when the imaginary part is 0 or less than some very small number like 1E-6 or something.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!