2024-05-05 10:07:52 +0100 | received badge | ● Popular Question (source) |
2024-05-05 10:07:52 +0100 | received badge | ● Notable Question (source) |
2023-12-07 01:06:54 +0100 | received badge | ● Famous Question (source) |
2023-10-21 12:53:01 +0100 | received badge | ● Popular Question (source) |
2023-10-21 12:53:01 +0100 | received badge | ● Notable Question (source) |
2023-09-09 04:46:11 +0100 | received badge | ● Famous Question (source) |
2023-05-02 18:46:06 +0100 | received badge | ● Popular Question (source) |
2023-04-25 23:51:45 +0100 | received badge | ● Popular Question (source) |
2023-03-20 22:00:53 +0100 | received badge | ● Popular Question (source) |
2023-02-21 03:20:21 +0100 | received badge | ● Notable Question (source) |
2022-06-04 20:09:25 +0100 | received badge | ● Notable Question (source) |
2022-01-24 22:14:09 +0100 | received badge | ● Popular Question (source) |
2022-01-03 17:09:58 +0100 | received badge | ● Popular Question (source) |
2021-11-11 08:42:10 +0100 | received badge | ● Notable Question (source) |
2021-11-05 00:40:07 +0100 | received badge | ● Notable Question (source) |
2021-09-08 23:36:30 +0100 | received badge | ● Popular Question (source) |
2021-06-23 12:51:07 +0100 | received badge | ● Popular Question (source) |
2020-11-11 20:04:03 +0100 | commented answer | Plotting multiple functions in Sage from a for loop Would you know how to reset the color if I were to say do 10 iteration instead of 5? |
2020-11-11 20:01:06 +0100 | commented answer | Plotting multiple functions in Sage from a for loop Wow this is so simple its crazy |
2020-11-10 23:20:18 +0100 | asked a question | Plotting multiple functions in Sage from a for loop A while back I asked about simulating the cake eating problem in sage and the algorithm seems like an excellent way to work with things. So far the code looks as follows for obtaining a soloution to the cake eating problem: The results I get are as follows: Im interested in plotting each instance of |
2020-11-10 20:50:02 +0100 | received badge | ● Popular Question (source) |
2020-11-10 19:54:30 +0100 | received badge | ● Popular Question (source) |
2020-11-08 04:39:49 +0100 | commented answer | Issues with Cake Eating Problem My code is as follows:
|
2020-11-06 19:23:54 +0100 | commented answer | Issues with Cake Eating Problem Hey I tried your print command and I got nothing. Could you direct me to a resource where I could learn how to collect successive values? |
2020-11-06 18:35:31 +0100 | asked a question | Issues with Cake Eating Problem A while back I asked about simulating the cake eating problem in sage and the algorithm seems like an excellent way to work with things. So far the code looks as follows for obtaining a soloution to the cake eating problem: The results I get are as follows: Initially I thought that it would be a matter of just setting If I wanted to obtain values for |
2020-07-20 21:39:53 +0100 | commented answer | Recursive problems in Sage I'm genuinely surprised how little code is needed for this problem. Thank you! |
2020-07-20 21:15:30 +0100 | commented question | The Cake Eating Problem in Sage @jaydfox I have a video which goes through the pen and paper work on solving a planners problem here:https://www.youtube.com/watch?v=Bv_tP3GP5Qg&list=PLLAPgKPWbsiQ0Ejh-twYC3Fr8_WA9BKCc&index=4. Its pretty much the same problem for a cake eating problem except the production function changed. |
2020-07-20 21:12:31 +0100 | received badge | ● Commentator |
2020-07-20 21:12:31 +0100 | commented question | Recursive problems in Sage @EmmanuelCharpentier I see the issue with my approach. Though I actually made a video on solving a planners problem which is similar to this that uses value function iteration, https://www.youtube.com/watch?v=Bv_tP.... I just want to be able to code something like this. |
2020-07-20 05:13:05 +0100 | marked best answer | Unable to simplify variable completely In solving the following hicksian demands in this problem and so far the proceedure works great. however I note that I dont get such a clean result for Is there more I can do to clean up my solutions? |
2020-07-19 19:38:18 +0100 | asked a question | Recursive problems in Sage I've been trying to figure out how to run a basic recursive problem in sage. The basic structure of the problem I have figured out, its just a matter of putting it in terms of a for/ while loop. Any help is appreciated. |
2020-07-19 09:16:17 +0100 | asked a question | The Cake Eating Problem in Sage Im interested in running a basic cake eating problem in sage. In its recursive formulation we have to solve the following bellman equations: $$v(k_t)=ln(k_t-k_{t+1})+\beta v(k_{t+1}), \ \ \ \beta\in(0,1)$$ The algorithm for solving this problem is as follows: Step 1: Take an initial guess of $v(k_{t+1})=0$ Any help is appreciated. |
2020-07-17 23:16:37 +0100 | marked best answer | equation does not simplify due to fractional exponent The following equation does not seem to simplify due to the fact there is a fractional power in one of the variables im seeking to solve for. The code I have is: is there anyway to fix this? |
2020-07-17 23:00:20 +0100 | asked a question | Running the Solow Model in Sage and Plotting it. As some of the regulars on this forum could tell I've really gotten into sage for its appications to economics problems. I came up withthe following code for the Solow growth model in sage. I'm interested to see if I can make a dotted line from the x-axis and y-axis to show where the green and red lines intersect or even better display a number. To visualize what I want I've used However this isn't the prettiest visualization and I'm wondering if I could get better graphics in sage. Any help is appreciated. |