Computing the 10,005th Prime Number
1 view (last 30 days)
Show older comments
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
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.
Answers (1)
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.
- Initialise a count variable to 0
- Initialise a temporary variable to 2
- Run an infinite while loop
- Inside the loop, check if the temporary variable is prime. If yes, increase count by one
- Inside the loop, check if the count variable is equal to 10005. If yes, then break out from the loop
- End of while loop
- display the temporary variable as that contains the value of the prime number you need
0 Comments
See Also
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!