Powered By Blogger

Tuesday, September 15, 2015

Conditional Probability and Bayes ‘Theorem: An Application of Coding by Excel







When we are willing to apply the ideas of the statistics in the fields of engineering, sometime classic probabilities or fre­quen­tist sta­tis­tics, which deals with things like nor­mal dis­tri­b­u­tion, bell curves, and so on, does not as well as work so that we need another idea of the statistics, which is named Conditional probability or Bayes’ theorem. Bayesian probability theory is now commonly employed (oftentimes with stunning success) in many scientific disciplines, from astrophysics to neuroscience. It is most often used to judge the relative validity of hypotheses in the face of noisy, sparse, or uncertain data, or to adjust the parameters of a specific model.
The purpose of this article is to solve some types of complicate problems by using conditional probability and the methodology stated in article of “EMFPS: How Can We Get the Power Set of a Set by Using of Excel?” posted on link: http://emfps.blogspot.com/2012/08/emfps-how-can-we-get-power-set-of-set.html
An example has been analyzed and solved by this method.





Introduction
Conditional probability is referred to probability of an event or outcome based on the occurrence of a previous event or outcome.  Conditional probability is calculated by multiplying the probability of the preceding event by the updated probability of the succeeding event.
Consider the events of “A” and “B”. The probability of event B is calculated by below formula, if event A was already occurred:

 P (B|A) = P (AÇ B) /  P (A)   ,  P (A) > 0

Bayes’ rule really involves nothing more than the manipulation of conditional probabilities. Bayesian probability theory provides a mathematical framework for performing inference, or reasoning, using probability. Bayesian logic is a branch of logic applied to decision making and inferential statistics that deals with probability inference: using the knowledge of prior events to predict future events. Bayes' theorem provided, for the first time, a mathematical method that could be used to calculate, given occurrences in prior trials, the likelihood of a target occurrence in future trials. According to Bayesian logic, the only way to quantify a situation with an uncertain outcome is through determining its probability.

Bayes' Theorem is a means of quantifying uncertainty. Based on probability theory, the theorem defines a rule for refining a hypothesis by factoring in additional evidence and background information, and leads to a number representing the degree of probability that the hypothesis is true.

According to Andrew Anderson (2012), Bayesian analy­sis is the use of con­di­tional or evi­den­tial prob­a­bil­i­ties. It looks at what you know of the envi­ron­ment and past knowl­edge, and allows you to infer prob­a­bil­i­ties based off of that data.

Here is an example that shows us the difference between classic probability and Bayesian approach:

In a company, the pop­u­la­tion of females is 32%, so that means that if I select some­one at ran­dom from my office, I have a 32% chance of pick­ing a female. The chances are purely based on the total prob­a­bil­ity. The Bayesian approach is to rely on past knowl­edge and then adjust accord­ingly. If I know that 25% of my office is male, and I grab a per­son, then I know that I have a 75% chance of pick­ing a female.

So is it 32% or 75%? Both are cor­rect answers depend­ing on what ques­tion you are really ask­ing, but both look at things dif­fer­ently.

Now, let me bring a complicate case and analyze it by using of the method posted on link: http://emfps.blogspot.com/2012/08/emfps-how-can-we-get-power-set-of-set.html

Case: Assume we have a box including 7 green balls and 5 red balls. We reach in and pull out 4 balls. If there is the probability of P (A) that 3 balls from 4 are green then, what is the probability of fourth ball that will be red?

Solution:

Conceptualize: Imagine we have two events A and B in which they are defined as follows:
A = event of 3 green balls from 4 balls

B = event of one red ball from 4 balls
Categorize: We should calculate P (B|A) by using of below formula:


 P (B|A) = P (AÇ B) /  P (A)   ,  P (A) > 0
 

How can we calculate P (AÇ B) and P (A)? In this case, I used from coding system in excel. In fact, I gave to any random ball into box a number. Therefore, we have 12 balls which each one has a number of 1 to 12. Since we have 4 balls from 12, I obtained all combinations or binomial [12, 4] or C (12, 4) because we have not any repetition and also the replacement does not matter, if we assign to any random ball a number. Finally, I calculated above probabilities step by step as follows: 

Analyze: Let me start step by step this method by using of excel:

Ø  Type “c” into cell A1 in your spreadsheet

Ø  Type into cell A2 the number of choices which is 4

Ø  Type into cells of: 

A3 = 1

A4 = 2

A5 =3

A6 =4

A7 =5

A8 = 6

A9 =7

A10 =8

A11 =9

A12= 10

A13= 11

A14 = 12

Ø  Now, we can run macro from VB code written by Myrna Larson to obtain all combinations. You can find this code on link: http://emfps.blogspot.com/2012/08/emfps-how-can-we-get-power-set-of-set.html
There are two methods to solve this problem as follows:

Method of event A:

Ø  Type formula:  =IF(A1<=7,1,0) on cell F1. Because we have 7 green balls

Ø  Draw above formula for G1, H1 and I1 and also draw down all four cells for 495 columns

Ø  Type formula: =IF(SUM(F1:I1)=3,1,0) on cell J1 and formula: =IF(SUM(F1:I1)>=3,1,0) on cell K1 and also draw down all two cells for 495 columns

Ø  On cell J496 type formula: =SUM(J1:J495) and on cell K496 type formula: =SUM(K1:K495)

Ø  Now, we can calculate the probabilities as follows:

Ø  P (AÇ B) = cell J496 / 495 = 0.353535354

Ø  P (A) = cell K496 / 495 = 0.424242424

Ø  P (B|A) = 0.83333333
Method of event B:

Ø  Type formula:  =IF (A1<=5, 1, 0) on cell F1. Because we have 5 red balls

Ø  Draw above formula for G1, H1 and I1 and also draw down all four cells for 495 columns

Ø  Type formula: =IF(SUM(F1:I1)=1,1,0) on cell J1 and formula: =IF(SUM(F1:I1)<=1,1,0) on cell K1 and also draw down all two cells for 495 columns

Ø  On cell J496 type formula: =SUM(J1:J495) and on cell K496 type formula: =SUM(K1:K495)

Ø  Now, we can calculate the probabilities as follows:

Ø  P (AÇ B) = cell J496 / 495 = 0.353535354

Ø  P (A) = cell K496 / 495 = 0.424242424

Ø  P (B|A) = 0.83333333

In the next articles, I will bring you the examples of real world in the field of engineering (Turbo molecular pumps) and also in the field of strategic management (External Real Forces and Pseudo-Forces to Design a Strategic Plan).

To be continued……..





Sunday, February 23, 2014

Analysis and Design Open Oscillatory Systems with Forced Harmonic Motion (1)

Consider a child, who is playing with a swing. During the period of the time, he learns to apply the optimum force to the swing in order to minimize efforts and maximize the amplitude of the swing. How? The answer is that driving force should be applied periodically and should be timed to coincide closely with the natural motion of the swing.In other words, a driven oscillator responds most strongly when driven by a periodically varying force, the frequency of which is closely matched to the frequency with which the system would freely oscillate if left to it. This frequency is called the natural frequencyof the oscillator.
The purpose of this article is to utilize some methodologies such as sensitivity analysis and Monte Carlo simulation model to analyse and design open systems which have the damped harmonic motion and are also forced by external oscillatory forces. A case of “Is There Any Mechanical Oscillatory System Where Maximum Velocity of Resonance Will Increase More Than Speed of the Light?” has been analysed by using of the methodology stated in article of “EMFPS: How Can We Get the Power Set of a Set by Using of Excel?” posted on link: http://emfps.blogspot.com/2012/08/emfps-how-can-we-get-power-set-of-set.html.

Introduction
There are three types of oscillatory motions as follows:

1. Mechanical waves:These involve motions that are governed by Newton’s laws and can exist only within a material medium such as air, water, rock, etc. Common examples are: sound waves, seismic waves, etc.

2. Matter (or material) waves:All microscopic particles such as electrons, protons, neutrons, atoms etc. have a wave associated with them governed by Schrödinger's equation.


3. Electromagnetic waves:These waves involve propagating disturbances in the electric and magnetic field governed by Maxwell’s equations. They do not require a material medium in which to propagate but they travel through vacuum. Common examples are: radio waves of all types, visible, infra-red, and ultra-violet light, x-rays, and gamma rays. All electromagnetic waves propagate in vacuum with the same speed of the light(c = 300,000 km/s).


First of all, I am willing to start the analysis and design of a mechanical system which is harmonically moving and it has been referred to Mechanical waves (Item 1). Before that, let me tell you a summary of damped and forced SHM.

Damped Harmonic Motion:
We know that a SHM can infinitely continue its motion, if there is not any friction force. In this case, a mass connected to a spring will have oscillatory motion forever. But the amplitude of SHM usually decreases and is closed to zero due tofriction force. We say that is a Damped Harmonic Motion (DHM). The damped force depends on the velocity of the particle and it can be calculated from formula: - b(dx/dt) where “b” is a positive constant number. The equation of the motion is obtained by using of Newton’s laws(F = ma) as follows:


Reference: K. R. Symon, Mechanics. Third edition, Addison – Wesley Publishing Company, 1971, Section 2.9.

Forced Harmonic Motion (FHM):
But if an external oscillatory force is affecting on an open system with DHM, we can analyze the equation of motion in accordance with below formula:





 Reference: K. R. Symon, Mechanics. Third edition, Addison – Wesley Publishing Company, 1971, Section 10.2.

In this case, when the frequency of external force reaches to natural frequency of our system, we will have the resonance.
Regarding to above equations, we can see that the most important parameters for analysis and designing of an open system are as follows:
Fm = External force (N)
k = Restoring constant of system (N/m)
m = mass of system (kg)
b = Damped force constant of system (kg/s)
ω'' = Angular velocity of external force (rad/s)

Methodologies

I used from three methods in which each one is assigned to one type of the oscillatory motions as follows:

- For mechanical waves, I consider to utilize the method mentioned in article of “EMFPS: How Can We Get the Power Set of a Set by Using of Excel?” posted on link: http://emfps.blogspot.com/2012/08/emfps-how-can-we-get-power-set-of-set.html.As an example, I will analyze a case by using of this method where the result will be the options for designing.

- For matter (or material) waves, I will use fromMonte Carlo simulation method stated in my previous articles such as “Application of Pascal’s Triangular plus Monte Carlo Analysis to Find the Least Squares Fitting for a Limited Area” posted on link: http://emfps.blogspot.com/2012/05/application-of-pascals-triangular-plus_23.html.As an example, I will examine the oscillatory motion of a free neutron to find out its coordination in related with the time.

-For electromagnetic waves,I will utilize from Sensitivity Analysis and as an example, I will analyze a case of energy carried by Gamma ray.

1. A Case of Mechanical Waves

Case: Is There Any Mechanical Oscillatory System Where Maximum Velocity of Resonance Will Increase More Than Speed of the Light?”

Assume we are designing an open system under force harmonic motion. What are the parameters of designing? According to above mentioned, they are as follows:

Fm = External force (N)
k = Restoring constant of system (N/m)
m = mass of system (kg)
b = Damped force constant of system (kg/s)
ω'' = Angular velocity of external force (rad/s)

We are willing to know if there is any mechanical system with FHM  in which maximum velocity of this system will go up more than 3E+8 m/s. What is the range for parameters of designing?
I used from the method stated in article of “EMFPS: How Can We Get the Power Set of a Set by Using of Excel?” posted on link: http://emfps.blogspot.com/2012/08/emfps-how-can-we-get-power-set-of-set.html.
I would like to remind you that we applied VB code written by Myrna Larson where the method of designing is step by step as follows:
- I know that the velocity of our system is the function of the above parameters (independent variables): V = f (Fm, k, m, b, ω’’) and we need to have Vm> 3E+8 m/s
- I consider a random domain for all five parameters for instance: 0.1 <(Fm, k, m, b, ω’’)< 1
- I start my calculation by using of Myrna Larson’s VB code and excel spreadsheet program.I have to analyse only 30240 column forcalculations simultaneously (=Permut(10,5))becuse my PC has not necessary instruments to analyse big data.
- I change the domain for all five parameters: 0.001 <(Fm, k, m, b, ω’’)< 100
- I continue to change the domain where I reach: 0.000001 ≤ (Fm, k, m, b, ω’’) ≤ 1000
In this domain, I found 17 types of the parameters where maximum velocity of our system is equal to 1E+9 m/s > c = 3E+8 m/s. It means that we can have 17 types of design for our system to reach maximum velocity more than speed of the light. All parameters for designing have been arranged in below Table:


As we can see, the most crucial thing is that our system will reach to maximum velocity more than speed of the light, if external oscillatory force goes up more than 1KN and damped force constant decrease less than 1E-6 kg/s. In fact, the boundary conditions are:

Fm ≥ 1KN               and                  b ≤ 1E-6 kg/s

2. A Case of Matter (or material) waves

Case:How Can We Find the Coordination of Free Neutrons in the Space of Entropy? 

The neutron is electrically neutral as its name implies. Because the neutron has no charge, it was difficult to detect with early experimental apparatus and techniques. Today, neutrons are easily detected with devices such as plastic scintillators.Neutrons are elementary particles with mass mN= 1.67 × 1027 kg.
Free neutrons are unstable. They undergo beta-decay whereits half-life is approximately between 614 to 885.7 ± 0.8 s. Neutrons emitted in nuclear reactions can be slowed down by collisions with matter. They are referred to as thermal neutrons after they come into thermal equilibrium with the environment. The average kinetic energy of a thermal neutron is approximately 0.04 eV. This moderated (thermal) neutrons move about 8 times the speed of sound. Typical wavelength (λ)values for thermal neutrons(also callednon-relativistic neutronscold) are between 0.1 and 1 nm. Their properties are described in the framework of material wave mechanics. Therefore, we can easily calculate de Broglie wavelength of these neutrons. But can de Broglie wavelength help us to solve this case? How?

As I stated, the analysis of an oscillatory neutroncan be done by Schrödinger's equation. The general figure of this equation is as follows:




To solve above equation for boundary conditions, we need to apply a strong method. Can Monte Carlo Simulation method help us to analyse this case?
For using of Monte Carlo simulation model, I firstly choose the probability distribution inferred from Binomial and Bayesian method to obtain a framework referred to entropy of these neutrons…..

Note:  “All spreadsheets and calculation notes are available. The people, who are interested in having my spreadsheets of this method as a template for further practice, do not hesitate to ask me by sending an email to: soleimani_gh@hotmail.com or call me on my cellphone: +989109250225. Please be informed these spreadsheets are not free of charge.”
To be Continued……………

Monday, January 27, 2014

Is There Any Absolute Zero in the Universe?

In the reference with my previous article of "External Real Forces and Pseudo-Forces to Design a Strategic Plan" posted on link: http://emfps.blogspot.com/2013/12/external-real-forces-and-pseudo-forces.html, I ask you: “Is not really there any “ABSOLUTE ZERO” in the universe with high speed changes?”
The mathematics logic proves us that there is not any “ABSOLUTE ZERO” in the universe with high speed changes. If you perceived the concept of “ABSOLUTE ZERO” referred to the naturalphenomena such as the temperature in Kelvin scale (-273.15 oC) in which Absolute Zero corresponds to no motion at the atomic level, it also works. How?
Let us consider below propositions:
p = There is absolute zero at temperature of -273.15 oC
q = There is not any motion at the atomic level in absolute zero.
We say the composition implication:[If “p” then “q”] will be true, if “p” and “q” are true or both of them are false or only “q” is true.
Now, let me tell you an example that I found about quantum harmonic oscillator as follows:
A diatomic molecule vibrates somewhat like two masses on a spring with a potential energy that depends upon the square of the displacement from equilibrium. But the energy levels are quantized at equally spaced values.
The energy levels of the quantum harmonic oscillator are:
En = (n + 0.5) ђω,    n = 0, 1, 2, 3,…..
ω = 2π (frequency)
ђ = Planck’s constant / 2π
And for a diatomic molecule the natural frequency is of the form:
ω = (k/mr) ^0.5
k = bond force constant
mr = reduced mass
Where the reduced mass is given by:
mr = m1m2/(m1+m2)

This form of the frequency is the same as that for the classical simple harmonic oscillator. The most surprising difference for the quantum case is the so-called zero-point vibration of the n=0 ground state. This implies that molecules are not completely at rest, even at absolute zero temperature.
Therefore, our composition implication (If “p” Then “q”) will be the true, if “p” is the false because “q” is alsothe false. In the result, we have:
There is not any absolute zero at temperature of -273.15 oC”

Another example is:“Physicists of the Ludwig-Maximilians University Munich and the Max Planck Institute of Quantum Optics in Garching have now created an atomic gas in the lab that has nonetheless negative Kelvin values (Science, Jan 4, 2013).”
You can read the article of “Researchers force a gas to a temperature below absolute zero” byBob Yirka on Jan 04, 2013 posted on below link;



Wednesday, January 1, 2014

Balance Scorecard and Fuzzy Logic Control

Probably you have heard some people say: “I work very hard for my organization but nobody perceives my hardworking” or “While I as well as fulfill my obligations for my organization, my colleague who usually wastes all his/her time at the office, gains the most promotions” or “How can my organization assess the value of my activities at the office?”.
Let us assume, someone who starts his/her work at the office every day, will be able to track his/her ranking, points or value of activities among all staff of the organization on his/her PC after time out. It is clear, all above concerns and questions will be cleared in which the motivation of the staff to do their jobs will increase and consequently work efficiency and productivity will go up at workplace.
The Balanced Scorecard (BSC), organized by Kaplan and Norton (1992, 1993, and 1996), abandoned the traditional approach of concentrating on financial data, and focused on four general perspectives: financial, customer, internal business and innovation and learning. Balanced scorecard is a management system and strategic management planning which is started by Dr. Robert Kaplan and David Norton and they used that as a performance measurement framework. The balanced scorecard is using widely in industries, nonprofit organizations and government all around world to improve monitoring the organization’s performance and compare the organization’s goals with the actual performance and internal and external communications. This performance measurement framework was used first to give the managers a better view of organization performance specifically to compare the financial situation of the company. However this practice with the name of balanced scorecard introduced in 1990s, the background of that is older like General Electric that has performance measurement reporting in the 1950s and the work of French process engineers in 20th century. The process of improving the balanced scorecard started from simple performance measurement framework to a general strategic planning and organizational planning mechanism.
Even though many companies utilize from BSC as a strategic management system, some research and case studies show us that nowadays it does not as well as work due to high speed changes around the world. Since a BSC framework is designed by using of a cause – effect system, we can use Fuzzy Logic Control to assign the accurate points and rankings into BSC framework (referred to previous articles of “External Forces and Pseudo-Forces to Design a Strategic Plan” and “What Is the Goal of a Central Bank in Related with Deficit Financing?”).


Friday, December 27, 2013

External Real Forces and Pseudo-Forces to Design a Strategic Plan (Fuzzy logic Vs. Classic Logic)







In the reference with my article of “Fuzzy Delphi Method to Design a Strategic Plan” posted on link: http://emfps.blogspot.com/2012/02/fuzzy-delphi-method-to-design-strategic.html, the forces, which come from PEST (Political, Economic, Socio-Cultural and Technology), have the most crucial role to design a strategic plan in which we should accurately recognize and determine the source, type, amount and direction of these forces. Some people entitle theses forces like the Conspiracy (توطئه‌) but we should know that these forces have always surrounded and encompassed us in the reality of the world and we have to deal with them to reach our new vision and mission. Against these forces, we have Pseudo-forces (some people say the Mirage of conspiracy (توطئه‌ توّهم)). If we take a mistake to select these forces for designing our strategic plan for instance, using the collection of many pseudo-forces, we have to pay too much cost. Sometime big mistakes will push a company toward the collapse.
First of all, let me tell you that we have to add another independent force which is assigned to the natural forces. Referring to my article of “Case Analysis of GAINESBORO MACHINE TOOLS CORPORATION: The Dividend Policy” posted on link: http://emfps.blogspot.com/2012/03/case-analysis-of-gainesboro-machine.html
 The environmental disaster, which is named as the natural force, was Hurricane Katrina. It was caused the huge destruction across the south-eastern United States. Therefore, I think that we have to change PEST analysis to PNEST analysis where we have: Political, Natural, Economic, Socio-Cultural and Technology.
Traditionally, the people said: “someone, who has the money and the power, is able to generate these forces in which the money and the power are respectively assigned to Economic and Politic forces. On the other hand, powerful Corporations simultaneously release several forces in different directions. But we should know and recognize which one of these forces is the real force and which one is pseudo-force to design a reasonable strategic plan and consequently to decrease our costs”.
But, nowadays we as well as know that there are other independent forces for example:
- In Socio-Cultural force: Iran presidential election on Jun 14, 2013 was a Socio-Cultural force in which the direction of this force was toward the whole of the world. You can track all events and propositions (news) released after this election up to know and by using a cause- effect system such as Fuzzy Logic Control, establish the best logical relationships among these events and propositions.
- In Technology force: The best example for this type of force is “the click” on Internet. When you are willing to read an article or see an advertisement on Internet, you are urged to click a page on Internet where the source of this force comes from Technology and it is a Technology force. In fact, you are forced to pay the cost of Internet or the pages on Internet.
In the case of the big Corporations, which produce several forces in different directions, the mathematics says us another thing. I was really surprized, when I perceived the viewpoint of the mathematics about these real and pseudo forces. In fact, there is Fuzzy logic vs. Classic logic.
Let me start it by an example;
Assume the company “X” is willing to have the new vision and mission for next 5 years. Definitely this company should design a new strategic plan and firstly should have an external analysis.  All assumptions and predictions for external analysis come from recent propositions and events inferred from PNEST analysis in which all threats and opportunities should be collected from these propositions and events. For instance:
Proposition “p” = a Political force
Proposition “q” = an Economic force
In the cause – effect system, we have:
 If “p” Then “q” or If “q” Then “p”
Which one is true?
In classic logic we have: If “p” Then “q” = min (1, 1+q-p) where true = 1 and false = 0
Sometime, we have the combination of the forces for instance:
Proposition “p” = a Political force
Proposition “q” = an Economic force
Proposition “r” = a Technology force
If “p” and “q” Then “r”
In Fuzzy Logic Control, we usually use from Mamdani (1975)’s approach to determine that if above cause-effect combination is true or false.
Fuzzy logic vs. Classic logic
In the classic logic system, above cause-effect combination is the true or the false but in the fuzzy logic system, there are many value for above cause-effect combination where we say the degree of accuracy is high or low.
Now, let us go to further in which we utilize fuzzy logic system accompanied by Monte Carlo Simulation model. In this way, we have an environment with high speed changes.
In the term of an environment with high speed changes, the mathematics proves us that there is not any difference between real forces and pseudo-forces. In fact, all forces should be considered to design a strategic plan but we have to find high degree of the accuracy or relationships among the events and propositions to decrease our costs. Nowadays, when I am watching CNBC or Bloomberg channel on satellite or tracking the share prices some companies on Google Finance, I can feel the real meaning of high speed changes.
In the reference with above mentioned, the mathematics proves us a general theorem as follows:
“All events (propositions) in the universe with high speed changes are related together where only difference among connections is assigned to the degree of relationship”
Therefore, if above theorem is the true, we can say that there is not any “ABSOLUTE ZERO” in the universe with high speed changes.
In the next article, I will tell you: “How can the mathematics help us to find high degree of the accuracy or relationships among the events and propositions to decrease our costs by using Fuzzy set theory, Pascal’s Triangular and Bayesian logic?. And so, how can we have the data or some real propositions (events) on our excel spreadsheet ones which are changing with high speed?”

  

Monday, September 30, 2013

The Deficit Financing: The Goal of A Central Bank






First of all, let me explain you about what is the deficit financing as follows: 1) In Macroeconomics: Planned expenditure by a government to put more money into the economy than it takes out by taxation, with the expectation that increase business activity will bring enough additional revenue to cover the shortfall. The term usually refers to a conscious attempt to stimulate the economy by lowering tax rates or increasing government expenditures. Critics of deficit financing regularly denounce it as an example of short-sighted government policy. Advocates argue that it can be used successfully in response to a recession or depression, proposing that the ideal of an annually balanced budget should give way to that of a budget balanced over the span of a business cycle. 2) In Microeconomics: Debt financing to cover excess of expenditure over income Deficit financing, however, may also result from government inefficiency, reflecting widespread tax evasion or wasteful spending rather than the operation of a planned countercyclical policy. The use of deficit financing to maintain total spending or effective demand was an important discovery of the economic depression of 1930. Today it is a major instrument in the bands of government to ensure high levels of economic activity. The definition of deficit financing is likely to vary with the purpose for which such a definition is needed. In under-developed countries deficit financing may be in two forms: a) Difference between overall revenue receipts and expenditure b) Deficit financing may be equal to borrowing from the banking system of the country. Deficit financing is needed when government expenditures are more than government incomes. Then to overcome the gap the government borrows the money from: (1) The local bodies (2) The Reserve Bank (3) The neighbouring countries (4) All the above Deficit financing means increasing the amount of money in circulation at a given time by printing and pumping in more paper currency by the Government of a country. The decision to create a deficit is made to stimulate an economy by increasing consumer purchasing and at the same time to create more jobs. Forms of deficit financing • Seigniorage, the benefit from printing money • Borrowing money from the population or from abroad • Consumption of fiscal reserves • Sale of fixed assets (e.g., land)

 The most important goal of a Central Bank in related with deficit financing is to decrease the value the country currency without using of above forms especially printing money and pumping in more paper currency by the Government of a country but by using the Game Theory. It means that, to avoid normal methods mentioned in classic economic science but using of the complex methods. If a Central Bank decreases the value of the country currency by using the Game theory and without to pump the money, it will have the margin when the central bank will have to really print money where, in this case, the time that the value of money really goes down, there is not any pumping money in markets but the time that the value of money is increasing, the central bank will print the money in accordance with the Margin.  In fact, I am willing to tell you that nowadays due to high speed the change in the world, designing a strategic plan for deficit financing is compulsory. By using of PEST analysis and following up the source of the forces which come from PEST such as Political, Economic, Socio – Cultural and Technology, a Central Bank can deal with these forces in the framework of a strategic plan where it can decrease the value of country currency without printing money. Traditional methodology for this job was the utilizing of the Game theory. But nowadays, the Game theory should be updated by using of new tools and methodologies. These methodologies can be as follows:  Using of System Dynamic to extract all events (propositions) which are related together and also referred to the forces inferred from PEST  Using of Fuzzy Logic Control to find out the best forces extracted from System Dynamic which are compatible with the current rules and regulations Finally, let me tell you that the injection of a stimulus package for economical crisis is something like the injection of insulin for diabetic type (2). It means that, after injection of stimulus package, high fluctuation on factors of the inflation rate, unemployment rate and also growth rate during the period of the exact time should be controlled by using of the some tools which are assigned to classic physics such as Damping and Resonance. In the case of diabetic type (2) is also the same in which after the injection of insulin, the blood sugar should be controlled by using of Damping and Resonance. Both of them need to utilize System Dynamic and Fuzzy Logic Control (FLC) for the PROSPERITY in the management. Now, let me leave the debate about deficit financing and focus on classic physics. In classic physics, the Conservative forces, which are referred to oscillatory and vibratory motions, don’t do any work where we have: ∆K = 0 We as well as know the Harmonic motions come from Hook’s law. The question is, can classic physics also updated? In the other word, can we generate the energy from the conservative forces in which the cost of energy producing will be very cheaper than the cost of energy generating by using of the fossil fuels? Please be informed that 1KW energy saving = 1 KW producing the new energy.

Tuesday, September 17, 2013

Comparing the Design a Strategic Plan and the Designing in the Fields of the Engineering

I think that the designing of a strategic plan is something like the designing in the field of structural or mechanics engineering. For instance, in structural engineering, if you want to design a beam, at the first step, you should recognize and determine the direction and amount of the external forces to analyze the stability of the beam. It means that you should find the source of external forces and the location of the beam where the external forces are affecting. Your mistake will increase the costs (to consider additional external forces) or even the collapse (not to consider some external forces) of the beam. At the second step, when we secure the stability of the beam by arranging and analyzing the external forces, we should know if the beam has the enough strength against bending moment, torque, shear and so on inferred from the external forces. In fact, we should deal with the external forces and internal strength to find out the best design for the beam.
The designing a strategic plan is the same in which the source of the external forces is referred to PEST and Porter’s five forces. And also the source of internal strength is referred to Resources, HR, Management, Financing, Marketing and so on. In fact, if we are very clever to arrange the external forces where we will be able to secure the stability of our company, the lack of internal strength will push our company to be collapsed due to the external forces (all external forces will be changed to the threats).
What is the difference? The difference is assigned to the sources of external and internal forces in which the forces on the beam are unique but the forces in strategic management are inferred from many sources. In fact, in strategic management, the independent variables are more than engineering. Therefore, to design a strategic plan is very harder than designing in the field of engineering. For instance, if we consider that a beam has been made by different types of materials, the analysis of stress – strain on the beam will be the complex and very hard.