Extracting a RAR file on a Mac is easy when you use the terminal. First, you need to make sure that you have homebrew installed. If you are not sure you can rrun the following inside of terminal:
which brew
You should get an output similar to the following:
user1@family-MacBook-Air ~ % which brew
/opt/homebrew/bin/brew
If nothing is returned and you receive a blank line, most of the time this means that you do no have Homebrew installed. If that is the case head over to Homebrew and install it via terminal.
With Homebrew installed open up terminal and install the rar package with the following:
brew install rar
The rar package install will also install unrar which can be used to extract a rar archive.
Now change directory to where the archive is, example:
cd /Users/user1/Downloads/
Extract the archive with the following, where 'ARCHIVE_NAME_1.rar' is the rar file you aim to extract:
unrar x ARCHIVE_NAME_1.RAR
The archive should be extracted. In some circumstances, Mac may prompt you with a security warning. To get around this you need to go into Setting / System Preferences and under Privacy & Security allow the application to run, then run the extract command again.