Monday, January 27, 2020

Mathematical and Physics Concepts in Computer Games

Mathematical and Physics Concepts in Computer Games Introduction A two part assignment was distributed and part one was run a simulation of a given differential equation using numerical integration techniques i.e. Euler and 4th order Runge-Kutta methods. Also continued as part one a table showing the results of the simulation was to be produced and each value was to be to 3 decimal places. Two graphs where to be produced a) a plot of each simulation result and the exact solution b) a plot of error values in each simulation and a short analysis of the results was to be produced. Part two a little more complicated than part one was to implement realistic physics of a rocket movement in earth atmosphere. Part 1 To calculate the exact solution was the simplest of equations mostly because it was provided it was a matter of processing the data. In simple terms to calculate the exact equation was displayed such as 1/(1+t), whereas t is time and increments by 0.25 each solution, therefore the equation would look like 1/(1+0.25) = 0.8 and the next step is 1/(1+0.50) = 0.667, furthermore is quite easy to calculate this equation. From the results appendix [a1] there are noticeable differences between Euler and the exact solution, first of all for Eulers method I used y-1+-(y-1^2)*(h), loosely translated into simpler terms y-1 is the previous y coordinate + -previous y coordinate to the power of 2 multiplied by h which in this case h was equal to 0.25. After having solved the equation for each t i.e. the x coordinate a significant difference was noticeable. After calculating Eulers results next was to calculate Eulers errors including the first y coordinate which was equal to 1 therefore the exact solution for the first y coordinate was also equal to 1 so there would be an error equal to 0 as the result. However the rest of the results varied but still remained below their equal t (x) coordinate for example t 0.250 was equal to y 0.800 in the exact solution and 0.750 in Eulers, after analysing the rest of the results prior to the calculation it was clear each Euler y result was lower than the exact solution y coordinate and was fairly easy to come to the error by simply exact solution y Euler solution y. Upon summing up all of Eulers results it gives a solution of 0.761 and dividing that by 41 gives a solution of 0.019. The reason it was divided by 41 is because there are 41 y coordinates including the first y coordinate which is equal to 1, therefore revealing the average number Euler error, suggesting Eulers method missed out on the exact solution at an estimate of 0.019, this does not seem a big difference but when trying to implement real physics in a game it makes all the difference. The graphs in appendix [a3] shows the simulation for Eulers method and the exact solution where it is easy to see each y coordinate and each error coordinate whereas [a4] shows the closer Eulers line and the exact line get to each other as t (time), (x coordinate) ascends, this suggests that Eulers method becomes more accurate over time and after using Eulers method for a long period of time eventually Eulers wouldve matched the exact solution at some point. Having viewed [a3] and [a4], [a8] shows the linear line for the exact solution and the linear line for Eulers method. 4th Order Runge-Kutta method was more complicated than Eulers mostly because as shown in [a1] the solution is more accurate because of the slopes that must be calculated in order to solve each y coordinate see [a2] for each slope solution. First and foremost we start by solving the first slope as k1 which was calculated as -(y-1^2) and like Eulers method translate to minus (the previous y coordinate to the power of 2) thats how k1 was solved. K2 has bit more calculation to process which looks like -(y-1+(0.5*k1-1*h))^2) translated to simpler terms is minus(previous y plus (0.5 multiplied by previous k1 multiplied by 0.25)) to the power of 2) this is how the second slope is discovered, solving k3 is much simpler because k1-1 is replaced with k2-1 the previous k1 solution that was just solved and k4s calculation becomes smaller -(y-1+(k3-1*h)) to the power of 2) just like k2 and k3, k4 using k3s previous solution that was solved. The fun part is finding y+1 which is the next y coordina te per t coordinate the calculation used is (y-1+((1/6)*(k1-1+2*(k2-1)+2*(k3-1)+k4-1)*h)) a significantly long calculation but reliable as it will get close to the exact solution result, translated it is (previous y coordinate plus(1 divided by 6) multiplied by (previous k1 solution plus 2 multiplied by (previous k2 solution) plus 2 multiplied by (previous k3 solution) plus (previous k4 solution) multiplied by 0.25). The sum of RK4 errors are 0 and the average was equally 0 that is an incredibly accurate method but more complicated to solve as Eulers method is the simplest RK method (first order) which is why RK4 is more accurate as it is a multi-stage method. See appendix [a5] for each y coordinate because RK4 method was incredibly accurate the exact solution coordinates cannot be seen but the data types are there to see and the legend is also there to show the different styles between each coordinate, appendix [a6] show the curve without any coordinate markers on them, again the c urves cannot be distinguished from each other because of RK4s incredible accuracy. See appendix [a7] to see the error coordinates for each integration technique on the same graph; it is quite easy to see which method is much more accurate but again this is because Eulers method is a first order method whereas Runge-Kutta is a fourth order method, Runge-Kuttas method has more steps in solving the equations therefore providing for a more accurate solution and producing less error values, whereas Eulers method only has one step and will always provide an error value each time. See [a9] for the linear line of the exact solution and RK4 estimation, it is extremely difficult to see because RK4 method is so accurate. Part 2 After using RK4 in part 1 an understanding it had taken some time to put it into physics, however the following scenario seems to be correct. The equation for acceleration is a = (Force Rocket + Force Drag) mass. The equation for Force drag is force drag = -0.5 * (0.2^3) * (0.2) * (20^2) * (2^2) ^2 The time step that is used is 1 i.e. 1kg m^2 because that is how much it can increment or decrement by with the user input. Time will go up to 60, the max the rockets force can go up to is 20kg m^2 and because acceleration is a derivative of velocity k1 = (time + velocity) i.e. the x and y positions. To find k2 the equation was k2 = (time + 0.5 * h, velocity + k1 * h), to find k3 is the same as k2 except the k1 in the equation is replaced with k2. K4 the last slope is calculated as k4 = (time + h, velocity + k3 * h). Lastly acceleration is calculated as a1 (next acceleration value) = (a-1 (previous value) + 1/6(k1 + 2 * k2 + 2 * k3 + k4) * h). The hard part is getting the equations correct after that it is a matter of using a loop in game to calculate the players position; the players position is equal to 5 metres. Pseudo Code for in game: Declare Static Class 4th Order Runge-Kutta { Do Declare Delegate double RK (x, y) variables declared as doubles (timer and velocity) Declare a static variable to calculate 1/6 as fS (fraction sixth) Declare rocket position as 5 Declare timer Declare a static double rk4(double x, y, h, RK f) x, y and h are doubles, r is called from delegate variable) { Declare half of h as halfh Declare Double k1, k2, k3, k4 Declare acceleration equals 0 y = acceleration K1 = (x plus y) K2 = (x plus halfh multiplied by h) plus (y plus k1 multiplied by h) K3 = (x plus halfh multiplied by h) plus (y plus k1 multiplied by h) K4 = (x plus h) plus (y plus k3 multiplied by h) Return (y plus fS multiplied by (k1 plus 2 multiplied by k2 plus 2 multiplied by k3 + k3)) RK acceleration equals y^2 ^^^ Returns acceleration } Declare Force drag kg to the power of 2 = -0.5 multiplied by (1.2 to the power of 3) multiplied by (0.2) multiplied by (20 to the power of 2) multiplied by (y to the power of 2 per second) because y is velocity Acceleration = (timer + force drag) / mass (decrement mass by 1 every second)) Player position plus acceleration every second If key pressed equals up Increment acceleration by 1Else if key press equals down Decrement acceleration by 1 Print timer, player position, acceleration and y While timer is less than 60 } Flowchart Critical analysis of the use of numerical integration techniques to solve similar situations in game development In the context of differential equations no numerical integration method is known as the method that is the best method to solve any and all ordinary differential equations. It all depends on the type of equation that is presented. When discussing gaming physics the solution to the differential equations plays a big part in games taking on more realism for example if a player fires an arrow in the air from a crossbow depending on velocity, gravity and wind etc. When and where will the arrows new position be within the game environment? Physics can be found almost anywhere whether it is in Skyrim shooting an arrow that will eventually drop or sniping in Battlefield that also includes bullets descending over time which is incredible and makes the games more realistic and much more difficult. Before using any method some basic equations must be known first for example force = mass multiplied by acceleration and acceleration = force divided by mass, standard equations that can be learned just using a search engine. Next the derivative of velocity is acceleration and the derivative of acceleration is position, a derivative is something which is based on another source [1] There are several methods to choose from when it comes to differential equations: First order integration Higher order integration First order integration Eulers Method One of the rather simpler methods that game developer can use although as already seen above it is not the most accurate. [2] Just like the previous ordinary differential equation that was solved in part one a developer takes the initial position and velocity and calculates the next position and velocity over time, a time step is used to calculate the next position and velocity such as the previous one that was used 0.25, once the first value is calculated the method is simply repeated to calculate the next one. An equation could look like this Vn+1 = Vn + (An *dt) whereas V is velocity and A is acceleration then the position could be calculated like Pn+1 = Pn + (Vn *dt) whereas P is position. Although this is a simpler method to use an error value will always be return because it is not the most accurate to produce solutions. Using any method can produce error values which is why the numerical integration methods provide estimations and not exact solutions whereas as the error value calculates how far off the estimation was from the exact solution. According to Bourg [3] instability is eliminated or minimized by smaller step sizes however larger steps size seems to make the problem much more complicated than it needs to be. Stability plays an important part for calculating equations more calculations will be processed if the step size is significantly small however this results in more stability. Bourg [3] mentions an adaptive step size where after a predicted amount of error the step size is changed as calculations are being processed. To use adaptive step size method it has to be based on the errors given from the estimations by doubling the step size, Heidts [4] mentions in his abstract the adaptive step size method works considerably well with second-order split-step Fourier integration scheme and can be greatly improved when using it alongside 4th order Runge-Kutta method. Unless the error values provided by Eulers estimations causes a serious change in a games physics then there should be no problem using Eulers method for simpler equations [2]. The simplest way to estimate the exact solution is using Eulers method, when using the method and there is a big difference between y1 and y-1, setting aside the curvature the linear extrapolation will not match up to it. Higher Order Integration 4th Order Runge-Kutta Runge-Kutta is more commonly used in physics [2], this integration method is incredibly accurate from what has been displayed already in part one of this report due to the method have many more steps to solving equations. The accuracy is second to none because RK4 calculates equations estimations in four steps thus given the name 4th Order. In order to achieve this accuracy a price must be paid and the price is more calculations need to be processed to calculate the physics; it has many more computations than other integrator techniques [2]. These types of calculations only need to be considered when accuracy is a must in games like bouncing a grenade of a doorframe in call of duty, therefore not all physics in games will require RK4 to calculate physics because physics is different in all games and some will only require Eulers method. So using the example of the Rocket in earths atmosphere a = Fr + Fd / m translates to acceleration = (FORCE rocket + FORCE drag) divided by mass. The rocket force increments by 1kg/m2 every time the user presses the UP key on the keyboard. Fr is calculated as Fd = -0.5.P.Cd.A.v^2 so basically force drag = minus 0.5 multiplied by P (airdensity) multiplied by Cd (Drag coefficient) multiplied by A (frontal area of the rocket) multiplied by v (velocity) squared. Conclusion All in all no numerical integration technique is better than the other it all depends what kind of physics in games needs to be produced, if its simple physics where the estimation does not make a major impact on the outcome Eulers method is the way to go for its quick computations it can make having simulations processed rather quickly, as for games where more complicated physics is involved 4th Order Runge-Kutta is the next best thing although it takes many more computations to be calculated the estimates are near perfect, RK4 is second to none when it comes to accuracy because of the extra work that needs to be considered. For example in games like battlefield RK4 is most likely to be used for those physics because the estimations need to be as accurate as can be, this takes into account bullet drop and flying aircrafts. Appendix [a1] [a2] [a3] [a4] [a5] [a6] [a7] [a8] Euler [a9] Rk4 References [1]https://www.google.co.uk/?gfe_rd=crei=xfluWI62OrLS8AerrruIDAgws_rd=ssl#q=what+is+a+derivative (Accessed: 18 December 2016). [2] Dickinson, J. (2015) Numerical integration in games development. Available at: https://jdickinsongames.wordpress.com/2015/01/22/numerical-integration-in-games-development-2/ (Accessed: 20 December 2016). [3] Bourg, D.M. (2001) Physics for games developers. United States: OReilly Media, Inc, USA (Accessed: 25 December 2016).. [4] Heidt, A.M. (2009) Efficient Adaptive step size method for the simulation of Super continuum generation in optical fibres, Journal of Light wave Technology, 27(18), p. 1. doi: 10.1109/jlt.2009.2021538 (Accessed: 2 January 2017).

Sunday, January 19, 2020

Child Discipline

Forms of Discipline: What is best for the child? Children are like flowers, if well taken care of they will bloom. If ignored or tortured, they will wither and die. Child discipline is one of the most important elements of successful parenting. Today, many people have this notion that physical abuse is in no way a solution to helping children discern between right and wrong. Since generations children have been taught the art of discipline through physical punishment.Often this approach to disciplining has resulted in two outcomes, one is where the child becomes more tolerant and is willing to adhere to what he/she has been told, or the other which more often results in children developing a sense of anguish and desire to revolt. Physical punishment often destroys the psychological mindset of a child and can scar his/her childhood, resulting in them to grow up to be particularly irritable and frustrated individuals. Over the decades we have seen that fewer and fewer parents are resor ting to this sort of method of violence to discipline their children.However contradictory to all that has been stated, I believe that sometimes parents are caught in a situation when children cross all boundaries of discipline and spanking is the only effective solution. Therefore, it is imperative to do so. Nonetheless, before spanking is even taken into consideration; all the other non-violent forms of discipline should be used. If none work then finally the act of spanking can be justifiable. The act of spanking is not merely a punishment that should be conducted on a whim by parents; there must be reasoning and evidence of a clear sort of rebellion or revolt that requires such treatment.However in such a situation I am of the firm belief that dialogue or discussion is not the option that will placate the issue in the long run. I feel this approach may only last for a short period of time until the child feels that his or her parents have forgotten the issue and will once again go back on the same path. A spanking advocate says, â€Å"I don't think it hurt me, in fact, it helped me in the long-run. It made me look at consequences, things kids don't normally think about. I was always told, ‘Listen, or you'll have to feel it. I listened when I was told, and now, I'm grateful I was raised like that because I feel now I am much more respectful to my peers and my elders especially. † Thus, the act of a spanking induces a fear, a fear that is necessary for children to experience, as it is this fear that rings in a child’s mind when he or she is on the verge of pursuing a mistake he or she is aware is wrong. When a child is noncompliant, I agree that a spanking is desirable by any parent, however spanking works best when followed by a serene conversation with the child about why was he/she spanked.There are many parents today who do not know how to use this disciplinary action on their children. They usually end up excising too much or too lit tle control over their child without giving them a suitable reasoning. A ‘Fact sheet from the Rocky Mountain Family council’ states that â€Å"pairing reasoning with a spanking in the toddler years delayed misbehavior longer than did either reasoning or spanking alone. Reasoning linked with a spank was also more effective compared with other discipline methods. Talking with the child about what behavior is expected and why-with the potential of a follow-up spank-worked best. Hence, Spank a child only when necessary and in conjunction with reasoning and other forms of discipline. Reality is a question of perspective; the further you get from it the more plausible it seems. Being raised in a traditional Indian family, I have been exposed to all forms of disciplines depending on the situation. As a child, I was spanked when I did something wrong. Being spanked taught me respect and kept me in line. The way my parents disciplined me is an accepted method of punishment back home. It is only today that I understand the importance of what they did.Just as my parents did not have the intention to physically abuse me, the entire concept of spanking too is not directed towards hurting the child, it is more of a lesson taught to make the child realize his/her mistake. Hence, there needs to be a limit to how much parents can spank their kids. If the act is carried out on a daily basis, there are higher chances of the kid behaving inappropriately behind closed doors. At the end of the day these kids get so frustrated of being spanked everyday that they end up doing unnecessary things such as lying, cheating, bullying other people behind their parents backs.Research by Murray Straus, a Co-Director at the Family Research Laboratory at the University of Durham,  indicated that â€Å"frequent spanking (three or more times a week) of children 6 to 9 years old, tracked over a period of two years, increased a child's antisocial behaviour, measured in activities l ike cheating, bullying, or lying†. Hence, it is important for the parents to learn which behaviours deserve a spanking. For instance, spilling water, making noise, wetting-pants are normal behaviours all children tend to pick. They do not need to be spanked as these are all age-appropriate behaviours.A key concept of discipline is to identify the behaviour that is typical for the age of the child. Based on the behaviour, parents can then take appropriate actions. For instance, Lisa Berlin, research scientist at the Centre for Child and Family Policy at Duke University says, â€Å"We're talking about infants and toddlers, and I think that just, cognitively, they just don't understand enough about right or wrong or punishment to benefit from being spanked,†Ã‚  As Berlin states, it is pointless to spank an infant, however as children grow older and begin to understand the severity of the punishment, a spanking is desirable.Today, there is a common misconception that spanki ng is a form of child abuse. Some parents are actually afraid to discipline their own children using the same method used for their own upbringing. Who is correct in the notion of right and wrong discipline? Is there such a thing as a correct way to spank your child? In my opinion, there is. So, my objective is to show that there is a fine line between the two terms Spanking and Child abuse. A Cambridge Dictionary states that Child Abuse occurs â€Å"when adults intentionally treat children in a cruel or violent way. On the other hand, Spanking in the same dictionary means â€Å"to hit a child with the hand, usually several times on the bottom as a punishment. † In this way, the line between the two can be drawn where too much spanking results in bruises and scars on the child. Therefore, parents should not spank their children when they are angry themselves as the spank would turn out to be an unintentional smack. When this occurs, parents tend to accidently take out their frustration on the child.Primarily, this is when Spanking, a form of discipline, starts drifting towards the entire concept of ‘child abuse’. However, this misconception has led to many unwanted situations where parents have been sent to jail by their own children. In a general conversation with a waiter at IHOP in Charlottesville, I got to know that he spanked his child twice due to confidential reasons and the child sent his dad, Greg, to the court. In this way, mild spanking is an essential tool to bring the child on the right path of success.A pro-spanker, Leeanne, mother to three children says â€Å"I gave a spanking (more like a weak handed swatting) on the butt when my children were small a couple of times†¦. after that, just a warning and a look was all they needed to keep in line, because they knew they didn't want one. All three of my children have told me that they are ashamed of their generation and each have thanked me, at one point or another for tho se little spanks. (Again, I don't mean pain†¦ just attention getting and disapproval of their behaviour). †Ã‚  As claimed by her, I too believe that spanking causes no harm on the child.It is just the way the parent does it. Love your children more than you spank them. At the end of the day, that is all what a child needs in life. Other than that, I also carried out my own survey for this essay where I asked fifteen friends their opinion on spanking. Each of them said that they have been spanked in at least one circumstance. They all agreed that it is proper to discipline in this way. It is only now after coming to UVA and being so successful they have realized the importance of the punishments their parents used to give them.When I asked them at what occasions did they get spanked, one said, â€Å"I have done a lot of silly things in life that my parents have disapproved, they believe that not all negative behaviours require a spanking; but spanking is their number one choice when all other methods of discipline fail. † Life is all about making decisions, taking risks and then finally facing their consequences. Hence, their parents took the risk and landed on the safe end where their children are reaching the pinnacle of success.As stated, spanking shouldn’t be the only form of discipline used on children. Parents need to take into account all the other forms as well to teach their children right from wrong. Parents can inculcate discipline in their child by showing discontent to the unsuitable behaviour of the child. This usually has a lasting effect as they know that if they do it again their parents will be disappointed, which is usually harder to deal with. This type of punishment only gives you more of a guilt feeling and it remains till you are in good terms with your parents again.When parents give that silent treatment, it becomes very hard to live in the same house where parents are not in talking terms with their kids. Scold ing is another form which is widely used all over the world. If it becomes an everyday situation then it may lessen the effect on the child. The child may start considering this as a normal act for parents to shout at him/her and will start ignoring them. The aim of the parents to teach the kid a lesson and make sure he/she does not make the same mistake again would fail.However, if scolding is the only process used then parents need to also praise their children when they do something good as well. In this way, scolding and  praising should be balanced so that children understand the entire concept properly. Another very effective form of discipline is ‘Time-Out’. This is mainly used on young children. â€Å"A  time-out  involves temporarily separating a child from an environment where inappropriate behaviour has occurred, and is intended to give an over-excited child time to calm down. †Ã‚  This method can be very effectual if carried out appropriately.To o much of something doesn’t attain the goal it is looking for. Similarly, excessive scolding or use of time-out does not have the same effect on the child as a one or two time would. For example, a child throwing a tantrum can be put in time-out for him/her to calm down. After that, parents need to make sure they kindly explain the kid that whatever he/she did is not acceptable in society. Even in this case, age matters as a one year old cannot be asked to sit and listen to a long lecture as they do not have long attention spans.An American mother stated Once the child gets older and as they start experiencing the real world, parents tend teach them a lesson by withholding privileges. When they reach a certain age i. e. when they are in grade 5-6, they start to differentiate precisely between family and friends. Sometimes as they enter the teenage world, they begin to value friends over family. At this point, parents know that their kids are growing and might go on the wrong path if not taught a lesson at the right time. Hence, some of the techniques such as ‘if they come home later than expected then take away what they love the most’ are used.For example, if you come home late, you will not be allowed to watch TV for two days. This is usually used once the child is old enough to understand. In this way, as they grow older they learn how to make thoughtful decisions. A balanced approach should be used in order to raise the child in the right manner. By ‘balanced’, I mean that parents should spank their children only to a certain extent primarily depending on their age and the type of mistake committed by the child. Spanking along with other forms of discipline should be used in order to make the child realize his/her mistakes in life. Child Discipline GOALS OF EFFECTIVE DISCIPLINE Discipline is the structure that helps the child fit into the real world happily and effectively. It is the foundation for the development of the child’s own self-discipline. Effective and positive discipline is about teaching and guiding children, not just forcing them to obey. As with all other interventions aimed at pointing out unacceptable behavior, the child should always know that the parent loves and supports him or her. Trust between parent and child should be maintained and constantly built upon.Parenting is the task of raising children and providing them with the necessary material and emotional care to further their physical, emotional, cognitive and social development. Disciplining children is one of the most important yet difficult responsibilities of parenting, and there are no shortcuts. The physician must stress that teaching about limits and acceptable behavior takes time and a great deal of energy. The hurried pace of today†™s society can be an obstacle to effective discipline. The goal of effective discipline is to foster acceptable and appropriate behaviour in the child and to raise emotionally mature adults.A disciplined person is able to postpone pleasure, is considerate of the needs of others, is assertive without being aggressive or hostile, and can tolerate discomfort when necessary. The foundation of effective discipline is respect. The child should be able to respect the parent’s authority and also the rights of others. Inconsistency in applying discipline will not help a child respect his or her parents. Harsh discipline such as humiliation (verbal abuse, shouting, name-calling) will also make it hard for the child to respect and trust the parent.Thus, effective discipline means discipline applied with mutual respect in a firm, fair, reasonable and consistent way. The goal is to protect the child from danger, help the child learn self-discipline, and develop a healthy conscience and an internal sense of responsibility and control. It should also instill values. One of the major obstacles to achieving these goals is inconsistency, which will confuse any child, regardless of developmental age. It can be particularly hard for parents to be consistent role models. Telling children to â€Å"Do as I say, but not as I do† does not achieve effective discipline.Parental disagreements about child-rearing techniques, as well as cultural differences between parents, often result in inconsistent disciplining methods. The physician needs to be mindful of these challenges and suggest steps that parents can take to resolve these differences (1). It is important that in teaching effective discipline, physicians do not impose their own agendas on the families they counsel. A balanced, objective view should be used to provide resources, and the goal should be to remain objective. This means using principles supported by academic, peer-reviewed literature.This is particular ly important when dealing with controversial issues such as disciplinary spanking. MEANINGS: Discipline means obedience to a superior authority. Accepting the norms of the family, society, the commands of elders and obeying them is also discipline. Discipline means accepting punishments for violation. Discipline also means training of mind and character, developing self-control and the habit of obedience. In the entire universe, there is an order and discipline. The stars, the planets, the earth on which we live, the moon and the sun we see, move according to a system of discipline.We can see that plants, insects, birds and animals too observe discipline in their lives, only man who has a thinking mind finds it difficult to observe discipline. Discipline could be divided into two broad categories, external and internal. External discipline is that which is imposed by outside authority. It is often linked with authority and force. Discipline in the army is one such. Soldiers do not h ave a say in it except implicit obedience. As Tennyson says â€Å"Theirs not to make reply. There’s not to reason why, theirs nut to do and die†.A soldier in a war field cannot ask for reasons. He has to obey commands; otherwise, the war is lost. Our ancient educational system believed in enforcing discipline by force. They used to say, if you spare the rod you will spoil the child. But that view is not correct. It will produce only negative results. That is why discipline has taken a new shape in schools and colleges now. It is call self-discipline. It is discipline by acceptance, not by imposition. We live in a democracy. Democracy is based on the will of majority of its citizens.It has to be accepted and obeyed. Otherwise democracy loses its meaning and leads to anarchy. Family customs and traditions, laws of the society, and moral and spiritual laws of the religion are all to be obeyed. That is discipline. Discipline demands obedience to commands fro leaders, respe ct for women, devotion to god etc. Though discipline starts at home, there is much more need for it in schools. Schools are nursing places for various virtues and values. Discipline in the classroom, on the playground and elsewhere in the school is all important.Force has no place in student discipline. Teachers are to be first disciplined, so one, who cannot control oneself, cannot control others. Students emulate teachers in all ways. It is more so in the matter of discipline. They observe discipline by acceptance not by force. Some argue that discipline limits freedom and that also kills the man’s initiative. This is a wrong view. Indiscipline cannot bring order of growth. Self-discipline or discipline by acceptance is self-control. One controls his emotions and desires and gives room to listen to other’s points of views.Man has many desires and impulses. If they are allowed free play without discipline, it will end in chaos. Nature and society are best disciplinari ans. Violate their laws, and you are in for punishment. Put your finger in fire. It burns, no matter who you are. There we learn discipline by experience. That is why Gandhi has rightly said that discipline is learning in adversity. It is therefore necessary that, if you wish to achieve anything enduring in life, you have to be first disciplined in life. Lack of discipline is like a ship without a rudder. Child Discipline Forms of Discipline: What is best for the child? Children are like flowers, if well taken care of they will bloom. If ignored or tortured, they will wither and die. Child discipline is one of the most important elements of successful parenting. Today, many people have this notion that physical abuse is in no way a solution to helping children discern between right and wrong. Since generations children have been taught the art of discipline through physical punishment.Often this approach to disciplining has resulted in two outcomes, one is where the child becomes more tolerant and is willing to adhere to what he/she has been told, or the other which more often results in children developing a sense of anguish and desire to revolt. Physical punishment often destroys the psychological mindset of a child and can scar his/her childhood, resulting in them to grow up to be particularly irritable and frustrated individuals. Over the decades we have seen that fewer and fewer parents are resor ting to this sort of method of violence to discipline their children.However contradictory to all that has been stated, I believe that sometimes parents are caught in a situation when children cross all boundaries of discipline and spanking is the only effective solution. Therefore, it is imperative to do so. Nonetheless, before spanking is even taken into consideration; all the other non-violent forms of discipline should be used. If none work then finally the act of spanking can be justifiable. The act of spanking is not merely a punishment that should be conducted on a whim by parents; there must be reasoning and evidence of a clear sort of rebellion or revolt that requires such treatment.However in such a situation I am of the firm belief that dialogue or discussion is not the option that will placate the issue in the long run. I feel this approach may only last for a short period of time until the child feels that his or her parents have forgotten the issue and will once again go back on the same path. A spanking advocate says, â€Å"I don't think it hurt me, in fact, it helped me in the long-run. It made me look at consequences, things kids don't normally think about. I was always told, ‘Listen, or you'll have to feel it. I listened when I was told, and now, I'm grateful I was raised like that because I feel now I am much more respectful to my peers and my elders especially. † Thus, the act of a spanking induces a fear, a fear that is necessary for children to experience, as it is this fear that rings in a child’s mind when he or she is on the verge of pursuing a mistake he or she is aware is wrong. When a child is noncompliant, I agree that a spanking is desirable by any parent, however spanking works best when followed by a serene conversation with the child about why was he/she spanked.There are many parents today who do not know how to use this disciplinary action on their children. They usually end up excising too much or too lit tle control over their child without giving them a suitable reasoning. A ‘Fact sheet from the Rocky Mountain Family council’ states that â€Å"pairing reasoning with a spanking in the toddler years delayed misbehavior longer than did either reasoning or spanking alone. Reasoning linked with a spank was also more effective compared with other discipline methods. Talking with the child about what behavior is expected and why-with the potential of a follow-up spank-worked best. Hence, Spank a child only when necessary and in conjunction with reasoning and other forms of discipline. Reality is a question of perspective; the further you get from it the more plausible it seems. Being raised in a traditional Indian family, I have been exposed to all forms of disciplines depending on the situation. As a child, I was spanked when I did something wrong. Being spanked taught me respect and kept me in line. The way my parents disciplined me is an accepted method of punishment back home. It is only today that I understand the importance of what they did.Just as my parents did not have the intention to physically abuse me, the entire concept of spanking too is not directed towards hurting the child, it is more of a lesson taught to make the child realize his/her mistake. Hence, there needs to be a limit to how much parents can spank their kids. If the act is carried out on a daily basis, there are higher chances of the kid behaving inappropriately behind closed doors. At the end of the day these kids get so frustrated of being spanked everyday that they end up doing unnecessary things such as lying, cheating, bullying other people behind their parents backs.Research by Murray Straus, a Co-Director at the Family Research Laboratory at the University of Durham,  indicated that â€Å"frequent spanking (three or more times a week) of children 6 to 9 years old, tracked over a period of two years, increased a child's antisocial behaviour, measured in activities l ike cheating, bullying, or lying†. Hence, it is important for the parents to learn which behaviours deserve a spanking. For instance, spilling water, making noise, wetting-pants are normal behaviours all children tend to pick. They do not need to be spanked as these are all age-appropriate behaviours.A key concept of discipline is to identify the behaviour that is typical for the age of the child. Based on the behaviour, parents can then take appropriate actions. For instance, Lisa Berlin, research scientist at the Centre for Child and Family Policy at Duke University says, â€Å"We're talking about infants and toddlers, and I think that just, cognitively, they just don't understand enough about right or wrong or punishment to benefit from being spanked,†Ã‚  As Berlin states, it is pointless to spank an infant, however as children grow older and begin to understand the severity of the punishment, a spanking is desirable.Today, there is a common misconception that spanki ng is a form of child abuse. Some parents are actually afraid to discipline their own children using the same method used for their own upbringing. Who is correct in the notion of right and wrong discipline? Is there such a thing as a correct way to spank your child? In my opinion, there is. So, my objective is to show that there is a fine line between the two terms Spanking and Child abuse. A Cambridge Dictionary states that Child Abuse occurs â€Å"when adults intentionally treat children in a cruel or violent way. On the other hand, Spanking in the same dictionary means â€Å"to hit a child with the hand, usually several times on the bottom as a punishment. † In this way, the line between the two can be drawn where too much spanking results in bruises and scars on the child. Therefore, parents should not spank their children when they are angry themselves as the spank would turn out to be an unintentional smack. When this occurs, parents tend to accidently take out their frustration on the child.Primarily, this is when Spanking, a form of discipline, starts drifting towards the entire concept of ‘child abuse’. However, this misconception has led to many unwanted situations where parents have been sent to jail by their own children. In a general conversation with a waiter at IHOP in Charlottesville, I got to know that he spanked his child twice due to confidential reasons and the child sent his dad, Greg, to the court. In this way, mild spanking is an essential tool to bring the child on the right path of success.A pro-spanker, Leeanne, mother to three children says â€Å"I gave a spanking (more like a weak handed swatting) on the butt when my children were small a couple of times†¦. after that, just a warning and a look was all they needed to keep in line, because they knew they didn't want one. All three of my children have told me that they are ashamed of their generation and each have thanked me, at one point or another for tho se little spanks. (Again, I don't mean pain†¦ just attention getting and disapproval of their behaviour). †Ã‚  As claimed by her, I too believe that spanking causes no harm on the child.It is just the way the parent does it. Love your children more than you spank them. At the end of the day, that is all what a child needs in life. Other than that, I also carried out my own survey for this essay where I asked fifteen friends their opinion on spanking. Each of them said that they have been spanked in at least one circumstance. They all agreed that it is proper to discipline in this way. It is only now after coming to UVA and being so successful they have realized the importance of the punishments their parents used to give them.When I asked them at what occasions did they get spanked, one said, â€Å"I have done a lot of silly things in life that my parents have disapproved, they believe that not all negative behaviours require a spanking; but spanking is their number one choice when all other methods of discipline fail. † Life is all about making decisions, taking risks and then finally facing their consequences. Hence, their parents took the risk and landed on the safe end where their children are reaching the pinnacle of success.As stated, spanking shouldn’t be the only form of discipline used on children. Parents need to take into account all the other forms as well to teach their children right from wrong. Parents can inculcate discipline in their child by showing discontent to the unsuitable behaviour of the child. This usually has a lasting effect as they know that if they do it again their parents will be disappointed, which is usually harder to deal with. This type of punishment only gives you more of a guilt feeling and it remains till you are in good terms with your parents again.When parents give that silent treatment, it becomes very hard to live in the same house where parents are not in talking terms with their kids. Scold ing is another form which is widely used all over the world. If it becomes an everyday situation then it may lessen the effect on the child. The child may start considering this as a normal act for parents to shout at him/her and will start ignoring them. The aim of the parents to teach the kid a lesson and make sure he/she does not make the same mistake again would fail.However, if scolding is the only process used then parents need to also praise their children when they do something good as well. In this way, scolding and  praising should be balanced so that children understand the entire concept properly. Another very effective form of discipline is ‘Time-Out’. This is mainly used on young children. â€Å"A  time-out  involves temporarily separating a child from an environment where inappropriate behaviour has occurred, and is intended to give an over-excited child time to calm down. †Ã‚  This method can be very effectual if carried out appropriately.To o much of something doesn’t attain the goal it is looking for. Similarly, excessive scolding or use of time-out does not have the same effect on the child as a one or two time would. For example, a child throwing a tantrum can be put in time-out for him/her to calm down. After that, parents need to make sure they kindly explain the kid that whatever he/she did is not acceptable in society. Even in this case, age matters as a one year old cannot be asked to sit and listen to a long lecture as they do not have long attention spans.An American mother stated Once the child gets older and as they start experiencing the real world, parents tend teach them a lesson by withholding privileges. When they reach a certain age i. e. when they are in grade 5-6, they start to differentiate precisely between family and friends. Sometimes as they enter the teenage world, they begin to value friends over family. At this point, parents know that their kids are growing and might go on the wrong path if not taught a lesson at the right time. Hence, some of the techniques such as ‘if they come home later than expected then take away what they love the most’ are used.For example, if you come home late, you will not be allowed to watch TV for two days. This is usually used once the child is old enough to understand. In this way, as they grow older they learn how to make thoughtful decisions. A balanced approach should be used in order to raise the child in the right manner. By ‘balanced’, I mean that parents should spank their children only to a certain extent primarily depending on their age and the type of mistake committed by the child. Spanking along with other forms of discipline should be used in order to make the child realize his/her mistakes in life.

Saturday, January 11, 2020

Team Role Paper

Team Role Paper Learning Team A COM100: Introduction to Communication Jan Bozwell, instructor Team Roles Working in teams can be a tricky task for a good majority of people, but being able to designate roles to each team member can help promote the teams effectiveness, cohesion and advance the project completion. Designating roles for the members of a group can increase effectiveness because it helps cater specific roles to a specific need that supports the team’s collaborative effort. Some roles that help in this effort are the leadership role, the encourager, analyst, and a secretary.Each role has a certain responsibility that can ensure success and effectiveness. The leader is one of the most important roles, the leader helps keep the group on task; he/she maintains the schedule of meetings, and deadlines. The encourager helps guide the discussion to maintain a forward momentum. The analyst is the facts checker; their main responsibility is to make sure that information is correct (Indiana University: Bloomington,  2012). The final role belongs to the secretary, this person’s responsibility is to make sure ideas are recorded and submitted on time.Each designated role plays a major part in the effectiveness of the team’s final project. Effectiveness of a group is paramount in keeping a group on track and maintaining a deadline, but cohesion can be just as important for a team. By assigning roles to individual team members, you’re building cohesion. Individuals possess a variety of strengths and weaknesses which can often complement each other in a team setting. The strengths of one team member may help balance the weaknesses of another. By splitting a project into smaller tasks based on individual strengths, team members are forced to trust and rely on one another to omplete parts of the project. When tasks overlap or are ready to come together, communication between team members helps create unity as the team works toward a comm on goal. Giving roles to members of a team also creates a sense of ownership and pride in the overall project. When individuals are invested in a project, they are naturally drawn closer to others with a similar goal. According to Stahl (2012), â€Å"Working together, each bringing our gifts and not only valuing, but seeking those of others enables us to create the best possible solutions. † (p. 6) When people see the value others are able to provide to the quality of a project, a mutual sense of accomplishment brings them together. Being able to bring team members together on a project they feel pride in, allows for the best possible work to be put forth. But, not only does taking pride help, but effective meetings and an equal share of responsibility helps keep the team on task. Assigning roles and responsibilities in a team is essential for project completion. When a team leader wants to achieve excellence with the group, the selection of tasks will be optimized if they us e all of the member’s experiences and skills.The single most important goal in team success is having effective team meetings. Team meetings create responsibilities for team members so they are up to date on the project deadline. The more communication and the more goal oriented a team is, the better the outcome of the project. Kennedy (2008) says, it is always important to maintain focus and create responsibilities for the task and team. When these responsibilities and roles are established it creates common expectations. A timeline is essential as well, as far as setting date on completing projects and checking in.Successes of projects come with being responsible, and communication within a team. Being able to designate roles can help tremendously, allowing a team to complete their assignment promptly and efficiently. Team members are more engaged when they have a clear outline of the work at hand, and what is expected of them. As well as feeling like they’re part of the finished product, no matter what their role turned out to be. By focusing on individual strengths, sharing the work load and allowing for equal input, you push team cohesion and effectiveness to its limits.References Indiana University: Bloomington. (2012). Teaching and Learning. Retrieved from http://www. teaching. iub. edu/finder/wrapper. php? inc_id=s2_5_group_03_designate. shtml Stahl, M. (2012,  June). Creating Dynamic Teams–The Power of Working Together, Stronger, Bolder!†¦ Dynamics of Critical Care 2012, Vancouver, British Columbia, September 23-25, 2012.. Dynamics, 23(2), 36. Frances Kennedy. (2008). Successful Strategies for Teams. Clemson University. Retrieved from http://www. clemson. edu/OTEI/documents/teamwork-handbook. pdf

Friday, January 3, 2020

Infant Attachment Is The Bond Between An Infant And Their...

Infant attachment is the bond between an infant and their caregivers. An infant’s early attachment to their primary caregiver (PCG) is often seen as the foundation for all future development (Fairbairn, 1952). Individual difference perspectives have focused greatly on the predictive power of attachment because parents want to raise healthy, well-adjusted, normal children and are often concerned about the extent to which their parental upbringing skills can impact their child’s future. Attachment theory claims that infants are born with the innate ability to form attachments to their primary caregivers (Bowlby, 1969). Ainsworth and Bell (1970) developed the Strange Situation Procedure (SSP) to determine the different attachment styles between mothers and their young children, which are secure, insecure avoidant, and insecure resistant. Hazen Shaver (1987) applied attachment theory to adult relationships to show the predictive power of attachment. Infant attachment is tr anslated into the romantic relationship style. This shows the consequences of attachment as all future relationships can be determined by the infant’s bond with their parents. However, attachment theory and the SSP may not be universally applicable, as child-rearing practices vary widely across cultures. Some children are raised by multiple caregivers, some are often left alone and others are never separated from their attachment figure. This suggests that secure attachments are culturally dependent. ThisShow MoreRelatedResearch On Attachment Theory On The Bonds Created Between Infants And Their Caregivers1730 Words   |  7 PagesTraditional research on Attachment Theory focuses on the bonds created between infants and their caregivers within the first few years of life. When tested, these children typically display an â€Å"organized† pattern of behavior when seeking comfort and safety from their caregiver. Organized attachments are those that follow a specific pa ttern of behavior and are clearly defined as secure, insecure—avoidant, or insecure—ambivalent. However, there remains a percentage of children who fail to engageRead MoreAttachment Is Defined As The Bond Between An Infant And A Primary Caregiver And The Reaction Essay1925 Words   |  8 PagesStaton Attachment is defined as the bond that is formed between an infant and a primary caregiver and the reaction an infant has during separation when reuniting with his/her primary caregiver (Lee, 2003). Since parents, biology, and culture influence attachment, children will experience different effects and results based on how attachment develops. In 1964, Rudolph Schaffer and Peggy Emerson conducted a study in which they studied babies and developed a sequential progression of attachment. IndiscriminateRead MoreAttachment Theory on Socio-Emtionals Development of Children1435 Words   |  6 PagesAttachment Theory: One of the most studied topics in today’s psychology is the attachment theory whose common references are from attachment models by Bowlby and Ainsworth. Since its introduction, the concept has developed to become one of the most significant theoretical schemes for understanding the socio-emotional development of children at an early stage. In addition, the theory is also developing into one of the most prominent models that guide parent-child relationships. Some of the keyRead MoreThe Mother And The Baby Enter The Room744 Words   |  3 Pagesexperience of attachment is one of pleasure and comfort, crucial in the healthy development of forming relationships for infants and children. The concept of attachment is a positive emotional bond between a child and an individual of particular importance to the child. According to the earliest of scientific developments, children who form social bonds with their direct caregivers ultimately lead a more well-balanced and fulfilling life. Forming the appropriate bonds with an infant is especiallyRead MorePersonality Development By Mary D. Salter Ainsworth And John Bowlby1322 Words   |  6 PagesMain Idea Attachment, as defined by â€Å"Infants, Children, and Adolescents† is the strong emotional connection that develops between an infant and caregiver, which provides the infant with a sense of joy, comfort, and emotional security (Berk, 2012, p. 264). Between 6 to 12 months of age, infants typically have developed said strong emotional connection to familiar people who have responded to their need for comfort, care, and other needs. While many individuals might suggest that a baby’s emotionalRead More Theories of Attachment: The Importance of Bonding with Infants and Toddlers1196 Words   |  5 PagesTo infants, the world is a brand new experience full of new sights and sounds, and their parents are their first teacher who educates them about the new environment around them. In addition, they learn about their surroundings through touch which is an important part of the way infants observe this strange new world. Babies and toddlers learn about the way relationships ar e formed through becoming attached to their parents and bonding with them. Infants and toddlers love hugs, kisses, gentle caressesRead MoreThe Development Of Attachment Bonds973 Words   |  4 Pagesdevelopment of attachment bonds to other biological figures plays an important role in emotional development. Throughout life, an individual will form several relationships, some of which will be sincere and intimate while others will be superficial. However, collectively these relationships provide the foundation of our communities, families, and friendships and become essential to our survival as a species. A secure attachment bond can be classified as the interactive emotional relationship between a caregiverRead MoreThe Theories And Principles Of Attachment Theory1621 Words   |  7 PagesExploration of Attachment Theory Fully describe the theory including the main concepts and principles Attachment theory is a concept that explores the importance of attachment in respect to direct development. â€Å"It is a deep and enduring emotional bond that connects one person to another across time and space† (Bowlby, 1969; McLeod, 2009). It is the relationship that develops within the first year of the infant’s life between them and their caregiver. The theory also relates to the quality of theRead MorePsychological Theories, Freudian, Object Relational, And The Main Components Of Attachment And Object Relations Theory1660 Words   |  7 PagesIn this paper, the author will delineate the following developmental theories, Freudian, Object Relational, and the main components found in Attachment. The main theorists that will be addressed include, Sigmund Freud, John Bowlby, Mary Ainsworth, and some work of Melanie Klein. The author will provide a detailed explanation on attachment and object relations theory and how it can be incorporated with a client who is suff ering from Anorexia Nervosa and how the impact of development correlates withRead MoreStages Of Attachment Of The Infant s Attachment1211 Words   |  5 PagesStages of attachment. Another of Bowlby’s contributions is his proposal that the infant’s attachment to caregiver develops in stages attuned to the infant’s cognitive and emotional development. As described by Broderick Blewitt (2015), a bond emerges from the affect between mother and child in the first two months as the infant signals their needs by clinging, smiling, and crying. During this stage infants are not yet attached to anyone and do not discriminate between caregivers. Between their