The function capitalizes the first character of the input string and lowercases the remaining characters.

[CODE]:
```python
def approximate_function(s):
    return s[0].upper() + s[1:].lower()
```