In lambda calculus terms, a function can look like λx.2*x. The understanding is that the variable after the λ character is the parameter for the function, and the expression after the dot is where you would replace whatever value is passed as an argument.
Applying a function means that you provide an actual argument to it, and that is written in the usual way, by using parentheses. For example, (λx.2*x)(3) would be calculated ...