Skip to main content

The Mathematical anxiety

Many people are suffering from mathematical anxiety but the question is why and what is basically mathematical anxiety is???
The fear of math’s, numbers fear of solving the question in wrong manner fear that i am not doing it the way it should be done it is all because when the base of a student is not being developed properly in the early ages of life. Some even say that it due to some psychological disorder.

MATH & CULTURE:-
do the culture effect something on the brains of the people to have great math’s skills or don’t have the math’s anxiety studies proved that 51% Canadian people have mathematical anxiety and people in countries like INDIA SRI-LANKA & KOREA possesses great mathematical skills.

MATHEMATICS & WOMEN:-
it is observed that women have higher level of mathematical anxiety as compare to men that's why mostly are girls all around world chooses fields in which math’s courses are less. the Korean and Japanese universities proved statistically that women chooses programming and Visual arts studies lesser as compare to man.but on the other hand women all around the world are remarkably good in decision making.about 52% girls are occupying the HR positions globally.


Suggestions for teachers to Reduce Maths anxiety:-
National Council of Teachers of Mathematics (NCTM) (1989, 1995b) suggestions for teachers seeking to prevent math anxiety include:
·         Accommodating for different learning styles
·         Creating a variety of testing environments
·         Designing positive experiences in math classes
·         Refraining from tying self-esteem to success with math
·         Emphasizing that everyone makes mistakes in mathematics
·         Making math relevant
·         Letting students have some input into their own evaluations

Comments

Popular posts from this blog

Software Development & Fundamentals Microsoft Certification 98-361 TEST BANKS LESSON 4

Lesson 4: Understanding Web Applications 1. You are developing a Web page for a medium-sized business. You want to separate the formatting and layout of the page from its content. Which of the following technologies should you use to define the formatting and layout of the page content? a) Cascading Style Sheets (CSS) b) Hypertext Markup Language (HTML) c) JavaScript d) Hypertext Transmission Protocol (HTTP) Answer: a Difficulty: Medium Section Reference: Understanding Web Page Development Cascading Style Sheets (CSS) help you define the formatting and layout of a page’s content and store that separately from the content. HTML is a text-based language that uses various markup tags that describe how content is displayed. JavaScript is scripting language that you use to add functionality and behavior to a Web page. HTTP is the underlying communication protocol used by the World Wide Web. 2. You want to display an image on your Web page. The image is stored on a...

Software Development & Fundamentals Microsoft Certification 98-361 TEST BANKS LESSON 1

Lesson 1: Introduction to Programming 1. You need to gain a better understanding of the solution before writing the program. You decide to develop an algorithm that lists all necessary steps to perform an operation in the correct order. Any technique that you use should minimize complexity and ambiguity. Which of the following techniques should you use? a) flowchart b) decision table c) C# program d) A paragraph in English Answer: a Difficulty: Medium Section Reference: Introducing Algorithms A flowchart is a graphical representation of an algorithm that lists, in the correct order, all the necessary steps to perform the operation. A flowchart is simple to create and understand and is not ambiguous. 2. Which of the following languages is not considered a high-level programming language? a) C# b) Visual Basic c) Common Intermediate Language d) C++ Answer: c Difficulty: Easy Section Reference: Introducing C# C#, Visual Basic, and C++ are all h...

Software Development & Fundamentals Microsoft Certification 98-361 TEST BANKS LESSON 2

Lesson 2: Introduction to Object-Oriented Programming 1. You are developing code for a method that calculates the discount for the items sold. You name the method CalculateDiscount . The method defines a variable, percentValue of the type double . You need to make sure that percentValue is accessible only within the CalculateDiscount method. What access modifier should you use when defining the percentValue variable? a) private b) protected c) internal d) public Answer: a Difficulty: Medium Section Reference: Understanding Access Modifiers The private modifier restricts the access to the class in which the member was defined. The protected modifier restricts the access to the containing class and to any class derived directly or indirectly from the containing class. The internal modifier restricts the access to the code in the same assembly. The public modifier does not restrict access. 2. You are developing code that defines an InitFields method. Th...