Clear Filters
Clear Filters

Computing the 10,005th Prime Number

1 view (last 30 days)
Daniel Vehabovic
Daniel Vehabovic on 26 Feb 2019
Answered: Naman Bhaia on 1 Mar 2019
Can someone please help me in regards to writing a script that will help you compute the 10,005th Prime Number.
These were some of the tips that were given to us to help us.
  • Use the MATLAB function isprime( ) to test if a number is prime.
  • You will want to use one variable to keep track of how many primes have been found (i.e. increment this value by one if a prime is found)
  • Use another variable to keep track of which value is being tested.
  • Use a while-loop to iterate until you have found 10,005 prime numbers.
  • Display the number that was being tested after the while loop is complete.
Any advice or help would be greatly apprecaited. I'm totally lost on this part.
  1 Comment
James Tursa
James Tursa on 26 Feb 2019
You need to start writing some code and make an attempt. Then, when you have problems, come back with your code and ask specific questions about the issues you are having.

Sign in to comment.

Answers (1)

Naman Bhaia
Naman Bhaia on 1 Mar 2019
Hey Daniel,
What James said makes sense, you must try the problem and ask about your doubts here. But here are some hints to get the ball rolling.
  1. Initialise a count variable to 0
  2. Initialise a temporary variable to 2
  3. Run an infinite while loop
  4. Inside the loop, check if the temporary variable is prime. If yes, increase count by one
  5. Inside the loop, check if the count variable is equal to 10005. If yes, then break out from the loop
  6. End of while loop
  7. display the temporary variable as that contains the value of the prime number you need

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!