rahaverhma said:
There are 2 things taught to us:variables(litersls ) and constants .
I assume you meant "literals". This is terminology that is used in programming languages, so I'm going to assume that's the context of your question.
Literals, in the programming and computer science sense are NOT variables. A literal is an expression with a fixed value, such as the character 'b', the numbers 5 and 3.2, the string of characters "Tuesday", and so on.
In the programming context, a variable is a named specific region in memory that can hold a value of some kind. In the mathematical sense, a variable is something that can hold a numeric value.
rahaverhma said:
If we let a value 'a' as a constant ,meaning it would remain unchanged and also it is a set of real numbers .
No. A constant is not a set of real numbers. The value of the constant could come from the real numbers, but it would be only one real number, not a set of real numbers.
rahaverhma said:
If we take 'x' as a variable, meaning it can change and it is also a set of real nos.
Again, no. x can take on a single value, but as a variable, its value is generally not known until we solve for it.
rahaverhma said:
For ex. Lim (x>a) x = a ,a:fixed value ,any value from end to end, but still it is not getting clear to me about 'x'?? If it does change then w.r.t to what ?
It should be fairly obvious that ##\lim_{x \to a} x = a##. In other words, if x takes on values ever closer to a, then x will get closer and closer to a.
A better example would be one that is not so obvious, such as ##\lim_{x \to 0} \frac {\sin(x)} x##. The closer x is to 0, the closer the expression ##\frac{\sin(x)} x## is to 1.
rahaverhma said:
Can I say : a constant can be a variable but a variable can not be a constant.
No.
A constant is fixed, at least for the purposes of the problem, as
@jedishrfu said. The value of a variable can change.