Python Forum
creating simplex tableau pivot program easy or difficult for a beginner in Python? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: creating simplex tableau pivot program easy or difficult for a beginner in Python? (/thread-32808.html)



creating simplex tableau pivot program easy or difficult for a beginner in Python? - alex_0 - Mar-07-2021

I am thinking about trying to make a program where I can fill in a list of numbers and it would solve a simplex tableau and pivot it based on what the most negative bottom number is. I also would want to be able to input numbers and then get the values for the variables outputted to me. Is something like this a bit too difficult as a beginner?

I want to know what people think before I try to do this. I also don't really know how I would start to try and do this, it is just an idea that I had. It would be useful to have it set up similar to how it is in the image below, where I can input numbers, and then it would pivot it for me.

https://imgur.com/a/dnP5yOw


RE: creating simplex tableau pivot program easy or difficult for a beginner in Python? - nilamo - Mar-30-2021

Can it be done? Sure, anything is possible.
Is it too difficult for a beginner? I can't answer that, I don't even know what a simplex tableau is.

A pandas dataframe can be rotated, which might help? https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.transpose.html


RE: creating simplex tableau pivot program easy or difficult for a beginner in Python? - Larz60+ - Mar-31-2021

see: https://www.geeksforgeeks.org/simplex-algorithm-tabular-method/