Question

re doing. A Pythagorean triple is a set of integers (a, b, c) satisfying a2+bc2. Write pseudocode (or Matlab code) that will
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Matlab code:


#include <iostream>
#include <iomanip>
using namespace std;
int main()
{   int i,j,k,count=0,count1=0;
    for(i=1;i<=200;i++)
       for(j=1;j<=200;j++)
           for(k=1;k<=200;k++)
                {count1++;
                 if((i*i+j*j==k*k))
                      count++;
                 }
    cout<<"Number of Pythagorean Triples withduplicates: "<<count<<endl;
    cout<<"The Innermost for loop is entered"<<count1<<" times."<<endl<<endl;
    count=0;
    count1=0;
    for(i=1;i<=200;i++)
       for(j=i;j<=200;j++)
           for(k=j;k<=200;k++)
                {count1++;
                 if((i*i+j*j==k*k))
                      count++;
                 }
    cout<<"Number of Pythagorean Triples withduplicates: "<<count<<endl;
    cout<<"The Innermost for loop is entered"<<count1<<" times."<<endl;
  
   system("pause");           
    return 0;
}
ที่ Sel scoe 0lec. ,o ที่ 2- ๆ. ナー) both ale Sama So, na taiphe ezist

Add a comment
Know the answer?
Add Answer to:
Re doing. A Pythagorean triple is a set of integers (a, b, c) satisfying a2+bc2. Write pseudocode...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 2. The triple (a, b, c) is called a Pythagorean triple if a, b and c...

    2. The triple (a, b, c) is called a Pythagorean triple if a, b and c are natural numbers (in other words, they belong to N) and a2 +bc2. Prove that if a rectangle has sides of rational lengths p and q then the length of its diagonal is irrational if and only if there is a natural number r such that (p,q,r) is a a Pythagorean triple. State clearly any theorem proved in class that you use.

  • Discrete Structures class. An ordered triple of positive integers (a,b,c) is called a Pythagorean Triple if...

    Discrete Structures class. An ordered triple of positive integers (a,b,c) is called a Pythagorean Triple if a^2 + b^2 = c^2. Prove that if m & n are pos int.... 2) (10 pts) An ordered triple of positive integers (a, b, c) is called a Pythagorean Triple if a² + b2 = c2. Prove that if m and n are positive integers with m > n, then (m? – nº, 2mn, m² + n°) is a Pythagorean triple. Use this...

  • Matlab need it in keyboard types not handwriting 2) The Pythagorean theorem states that a2+b2-c2 ....

    Matlab need it in keyboard types not handwriting 2) The Pythagorean theorem states that a2+b2-c2 . Write a MATLAB pro- gram in a script file that finds all the combinations of triples a, b, and c that are positive integers all smaller or equal to 50 that satisfy the Pythagorean the- orem. Display the results in a three-column table in which every row corre- sponds to one triple. The first three rows of the table are: 5 12 13 6...

  • In this exercise, you will work with a QR factorization of an mxn matrix. We will proceed in the ...

    In this exercise, you will work with a QR factorization of an mxn matrix. We will proceed in the way that is chosen by MATLAB, which is different from the textbook presentation. An mxn matrix A can be presented as a product of a unitary (or orthogonal) mxm matrix Q and an upper-triangular m × n matrix R, that is, A = Q * R . Theory: a square mxm matrix Q is called unitary (or orthogona) if -,or equivalently,...

  • Question 8 A = 23n + 36n2        B = 6 + nlog2(n) + n      C =...

    Question 8 A = 23n + 36n2        B = 6 + nlog2(n) + n      C = log2n + 36n2 Which one of the following is correct? A. TA = O(n2)    TB = O(n)   TC = O(log2n) B. TA = O(n2)      TB = O(nlog2(n))  TC = O(n2) C. TA = O(n2)      TB = O(+ nlog2(n))       TC = O(log2n) D. TA = O(n2)      TB = O(n)      TC = O(n2) 0.5 points Question 9 Three criteria are used to determine whether a data structure is...

  • Can you please help me with creating this Java Code using the following pseudocode? Make Change C...

    Can you please help me with creating this Java Code using the following pseudocode? Make Change Calculator (100 points + 5 ex.cr.)                                                                                                                                  2019 In this program (closely related to the change calculator done as the prior assignment) you will make “change for a dollar” using the most efficient set of coins possible. In Part A you will give the fewest quarters, dimes, nickels, and pennies possible (i.e., without regard to any ‘limits’ on coin counts), but in Part B you...

  • C Programming - Please Help us! Implementing Load Balancing, the 3 Base Code files are at the bot...

    C Programming - Please Help us! Implementing Load Balancing, the 3 Base Code files are at the bottom: Implementing Load Balancing Summary: In this homework, you will be implementing the main muti-threaded logic for doing batch based server load balancing using mutexes Background In this assignment you will write a batch-based load balancer. Consider a server which handles data proces- sing based on user requests. In general, a server has only a fixed set of hardware resources that it can...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
Active Questions
ADVERTISEMENT