Deleted Bootcamp partition and it just disappeared. Nothing to merge with OSX partition

bootcampdisk-utilitypartition

I had Windows 10 Bootcamp on my MacBook Pro 15" 2015. I just tried to remove the Bootcamp with Bootcamp assistant by clicking "restore" and it gave me an error saying "The disk cannot be partitioned or restored to a single partition."

So I followed instructions given by this answer and I deleted the Bootcamp partition using Disk Utility.

The partition was successfully deleted and there was 200GB of unused space. I tried to merge it with my OSX partition and it gave me an error. Forgot what type of error exactly, something about one of partitions being broken (wrong amount of blocks or something?)

Now the problem is that the 200GB of unused space (previously used by Bootcamp) just disappeared. Nowhere to be seen.

enter image description here

What can I do to fix this? How can I get my OSX partition back to the original 500GB?

diskutil list

enter image description here

diskutil cs list

No CoreStorage logical volume groups found

sudo fdisk /dev/disk0

enter image description here

sudo gpt -r show /dev/disk0

enter image description here

Best Answer

You show in your posted image that the partition is encrypted. I was unaware a partition could be encrypted without using core storage. Anyway, I believe the correct command to fix your drive is given below.

sudo  diskutil  resizevolume  /dev/disk0s2  R

The command should move /dev/disk0s3 to the bottom of disk0 while resizing /dev/disk0s2 to maximum size. I am not sure if the sudo prefix is required.