How to formulate conjectures using matlab or any other program

  • Context: MATLAB 
  • Thread starter Thread starter rover
  • Start date Start date
  • Tags Tags
    Matlab Program
Click For Summary
SUMMARY

This discussion focuses on formulating conjectures using MATLAB and other programming languages for numerical series investigations. The user, rover, seeks step-by-step guidance due to limited experience with MATLAB. A participant suggests that conjectures can be formulated in MATLAB or any programming language, including C++, by defining a function to calculate sequence terms and utilizing loops for output. The conversation highlights the versatility of programming tools in mathematical conjecture formulation.

PREREQUISITES
  • Basic understanding of MATLAB programming
  • Familiarity with numerical series and sequences
  • Knowledge of programming concepts such as functions and loops
  • Experience with C++ syntax for implementing algorithms
NEXT STEPS
  • Learn MATLAB functions for numerical series manipulation
  • Explore C++ programming for mathematical functions and loops
  • Investigate spreadsheet tools for numerical analysis
  • Study recursion relations in programming for advanced sequence calculations
USEFUL FOR

Students, mathematicians, and programmers involved in numerical analysis and conjecture formulation, particularly those using MATLAB or C++ for mathematical computations.

rover
Hi,
I hope that I am posting my post in the right section!
I have been given many numerical series that i am supposed to investigate. A part of the investigation is the formulate conjectures for each of them. This is very time consuming part of my assignment . Therefore I would appreciate if anyone can tell me how to formulate conjectures on Matlab.

I have little experience using Matlab, so could you please give me step by step instructions!

Are there any other program that can formulate conjectures?

Thanks,
rover
:smile:
 
Physics news on Phys.org
If by "formulate conjectures" you mean setting up a program to show you the terms or the sum for a certain finite sequence, then you can do it in MATLAB or any other programming language. In fact, you can do it on a spreadsheet. It's been ten years since I used MATLAB (cool language, by the way), so I'm afraid I'm out of practice there.

Thinking about it, if you're not too familiar with programming, I'm not sure I can give you enough information here to do it. I say that in preface to:

In C++, you could put a relation to calculate the terms of your sequence into a function, say seq(n) where n is the term you want. (If you have a recursion relation, you may need to use two arguments, where one is the previous term in the sequence.) Then, all you need is a loop, say:

for (short iCounter = 1; iCounter <= 10; ++iCounter)
count << "Term " << iCounter << " = " << seq(iCounter) << endl;

If that makes absolutely no sense at all, then I'm afraid there's not much I can do to help you.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K