Construct a mathematical formula

  • Context: Undergrad 
  • Thread starter Thread starter adan
  • Start date Start date
  • Tags Tags
    Formula Mathematical
Click For Summary
SUMMARY

The discussion centers on constructing a mathematical formula to model consumption probability in a simulation of human agents. The user is attempting to combine a personal belief variable (X) with two influence variables (positive and negative) using a weighted sum. However, the weighted sum approach has not yielded the expected results, prompting suggestions to explore linear regression for weight fitting and consider alternative optimization functions like mean absolute error (MAE) and mean squared error (MSE). The limitations of linearity in the model are acknowledged, with a neural network suggested as a potential solution, although it may be excessive for the simplicity of the model.

PREREQUISITES
  • Understanding of weighted sums in mathematical modeling
  • Familiarity with linear regression techniques
  • Knowledge of optimization functions such as mean absolute error (MAE) and mean squared error (MSE)
  • Basic concepts of neural networks and their applications
NEXT STEPS
  • Explore linear regression for fitting weights in mathematical models
  • Research optimization techniques, focusing on mean absolute error (MAE) and mean squared error (MSE)
  • Investigate the application of neural networks for modeling complex relationships
  • Examine portfolio theory to understand the relationship between consumption and expected returns
USEFUL FOR

Mathematicians, data scientists, and simulation developers interested in modeling consumption behaviors and optimizing mathematical formulas for predictive accuracy.

adan
Messages
13
Reaction score
3
Hello,
I have been thinking of it for a long time, and I would appreciate suggestions from math experts.

I am working on a simulation of human agents. I want to set up a formula that defines the consumption probability (0,1), which consists of X, a value between 0 and 1, and two positive and negative integer values (0,1). The idea is to combine these variables. If positive influence is high, consumption should increase if negative influence is high, consumption should decrease. X represents personal belief without any influence.
The X and the influences variables are computed differently.

I thought of a weighted sum but that doesn't give the expected output.

Thank you!
 
  • Like
Likes   Reactions: Delta2
Mathematics news on Phys.org
adan said:
I thought of a weighted sum but that doesn't give the expected output.
A weighted sum is the obvious first choice; what do you mean 'doesn't give the expected output'?

Did you set the weights manually - if so have you fully explored how your model responds to adjusting the weights?

If you have a sample 'expected output' have you tried fitting the weights using linear regression? Have you tried different optimisation functions (e.g. mean absolute error (MAE) as well as mean squared error (MSE))?

If this is still not working for you then this may be due to the inherent limitation of linearity of the model. To break through this you could consider using a neural net (a weighted sum is essentially a neural net with no hidden layers and a single neuron with a linear activation function in the output layer). However this is probably overkill for such a simple model with only 3 inputs.
 
  • Like
Likes   Reactions: adan
Consider a portfolio of at least two stocks, take the consumption as the expectation value of returns, and the influences as the covariances.
 
  • Like
Likes   Reactions: adan
pbuk said:
A weighted sum is the obvious first choice; what do you mean 'doesn't give the expected output'?

Did you set the weights manually - if so have you fully explored how your model responds to adjusting the weights?

If you have a sample 'expected output' have you tried fitting the weights using linear regression? Have you tried different optimisation functions (e.g. mean absolute error (MAE) as well as mean squared error (MSE))?

If this is still not working for you then this may be due to the inherent limitation of linearity of the model. To break through this you could consider using a neural net (a weighted sum is essentially a neural net with no hidden layers and a single neuron with a linear activation function in the output layer). However this is probably overkill for such a simple model with only 3 inputs.
Thank you @pbuk, for your answer!. I noticed that the weighted sum doesn't give what I expect. I don't have data but just some intuition. For example consumption = w1*X +w2 * Infpositive - w2 * infnegative.
I assume w1 should not be too small(> 0.5). I found that using the weighted sum can't enforce the positive effect. I use a negative weight w2 to achieve the negative influence.
 

Similar threads

  • · Replies 25 ·
Replies
25
Views
7K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 22 ·
Replies
22
Views
3K
  • · Replies 16 ·
Replies
16
Views
3K
  • · Replies 35 ·
2
Replies
35
Views
1K
Replies
3
Views
2K
  • · Replies 61 ·
3
Replies
61
Views
4K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 33 ·
2
Replies
33
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K